Searched refs:scopeChainNode (Results 1 – 4 of 4) sorted by relevance
/external/webkit/Source/JavaScriptCore/runtime/ |
D | Executable.cpp | 100 JSObject* EvalExecutable::compileInternal(ExecState* exec, ScopeChainNode* scopeChainNode) in compileInternal() argument 112 JSGlobalObject* globalObject = scopeChainNode->globalObject.get(); in compileInternal() 115 … adoptPtr(new EvalCodeBlock(this, globalObject, source().provider(), scopeChainNode->localDepth())… in compileInternal() 116 …eGenerator> generator(adoptPtr(new BytecodeGenerator(evalNode.get(), scopeChainNode, m_evalCodeBlo… in compileInternal() 127 m_jitCodeForCall = JIT::compile(scopeChainNode->globalData, m_evalCodeBlock.get()); in compileInternal() 157 JSObject* ProgramExecutable::compileInternal(ExecState* exec, ScopeChainNode* scopeChainNode) in compileInternal() argument 171 JSGlobalObject* globalObject = scopeChainNode->globalObject.get(); in compileInternal() 174 …nerator> generator(adoptPtr(new BytecodeGenerator(programNode.get(), scopeChainNode, &globalObject… in compileInternal() 185 m_jitCodeForCall = JIT::compile(scopeChainNode->globalData, m_programCodeBlock.get()); in compileInternal() 231 …Object* FunctionExecutable::compileForCallInternal(ExecState* exec, ScopeChainNode* scopeChainNode) in compileForCallInternal() argument [all …]
|
D | Executable.h | 211 JSObject* compile(ExecState* exec, ScopeChainNode* scopeChainNode) in compile() argument 216 error = compileInternal(exec, scopeChainNode); in compile() 257 JSObject* compile(ExecState* exec, ScopeChainNode* scopeChainNode) in compile() argument 262 error = compileInternal(exec, scopeChainNode); in compile() 324 JSObject* compileForCall(ExecState* exec, ScopeChainNode* scopeChainNode) in compileForCall() argument 329 error = compileForCallInternal(exec, scopeChainNode); in compileForCall() 345 JSObject* compileForConstruct(ExecState* exec, ScopeChainNode* scopeChainNode) in compileForConstruct() argument 350 error = compileForConstructInternal(exec, scopeChainNode); in compileForConstruct()
|
D | JSFunction.cpp | 87 …nction::JSFunction(ExecState* exec, FunctionExecutable* executable, ScopeChainNode* scopeChainNode) in JSFunction() argument 88 : Base(scopeChainNode->globalObject.get(), scopeChainNode->globalObject->functionStructure()) in JSFunction() 90 , m_scopeChain(exec->globalData(), this, scopeChainNode) in JSFunction()
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2009-06-16 | 32257 Change the name 'sc' to 'scopeChainNode' in a few places.
|