Searched refs:currentScope (Results 1 – 3 of 3) sorted by relevance
142 void startLoop() { currentScope()->startLoop(); } in startLoop()143 void endLoop() { currentScope()->endLoop(); } in endLoop()144 void startSwitch() { currentScope()->startSwitch(); } in startSwitch()145 void endSwitch() { currentScope()->endSwitch(); } in endSwitch()146 void setStrictMode() { currentScope()->setStrictMode(); } in setStrictMode()147 bool strictMode() { return currentScope()->strictMode(); } in strictMode()148 bool isValidStrictMode() { return currentScope()->isValidStrictMode(); } in isValidStrictMode()149 … bool declareParameter(const Identifier* ident) { return currentScope()->declareParameter(ident); } in declareParameter()152 ScopeRef current = currentScope(); in breakIsValid()162 ScopeRef current = currentScope(); in continueIsValid()[all …]
1153 JSObject* currentScope = iter->get(); in findScopedProperty() local1154 if (!currentScope->isVariableObject()) in findScopedProperty()1156 JSVariableObject* currentVariableObject = static_cast<JSVariableObject*>(currentScope); in findScopedProperty()
14365 (JSC::JSParser::currentScope):