Home
last modified time | relevance | path

Searched refs:currentScope (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/JavaScriptCore/parser/
DJSParser.cpp142 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 …]
/external/webkit/Source/JavaScriptCore/bytecompiler/
DBytecodeGenerator.cpp1153 JSObject* currentScope = iter->get(); in findScopedProperty() local
1154 if (!currentScope->isVariableObject()) in findScopedProperty()
1156 JSVariableObject* currentVariableObject = static_cast<JSVariableObject*>(currentScope); in findScopedProperty()
/external/webkit/Source/JavaScriptCore/
DChangeLog-2011-02-1614365 (JSC::JSParser::currentScope):