Searched refs:currentScope (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/JavaScriptCore/parser/
H A DJSParser.cpp142 void startLoop() { currentScope()->startLoop(); }
143 void endLoop() { currentScope()->endLoop(); }
144 void startSwitch() { currentScope()->startSwitch(); }
145 void endSwitch() { currentScope()->endSwitch(); }
146 void setStrictMode() { currentScope()->setStrictMode(); }
147 bool strictMode() { return currentScope()->strictMode(); }
148 bool isValidStrictMode() { return currentScope()->isValidStrictMode(); }
149 bool declareParameter(const Identifier* ident) { return currentScope()->declareParameter(ident); }
152 ScopeRef current = currentScope();
162 ScopeRef current = currentScope();
549 ScopeRef currentScope() function
[all...]
/external/webkit/Source/JavaScriptCore/bytecompiler/
H A DBytecodeGenerator.cpp1153 JSObject* currentScope = iter->get(); local
1154 if (!currentScope->isVariableObject())
1156 JSVariableObject* currentVariableObject = static_cast<JSVariableObject*>(currentScope);

Completed in 76 milliseconds