Searched refs:scopeDepth (Results 1 – 9 of 9) sorted by relevance
/external/webkit/JavaScriptCore/runtime/ |
D | ScopeChain.cpp | 56 int scopeDepth = 0; in localDepth() local 63 ++scopeDepth; in localDepth() 65 return scopeDepth; in localDepth()
|
/external/webkit/JavaScriptCore/bytecompiler/ |
D | LabelScope.h | 43 …LabelScope(Type type, const Identifier* name, int scopeDepth, PassRefPtr<Label> breakTarget, PassR… in LabelScope() argument 47 , m_scopeDepth(scopeDepth) in LabelScope() 66 int scopeDepth() const { return m_scopeDepth; } in scopeDepth() function
|
D | BytecodeGenerator.h | 328 int scopeDepth() { return m_dynamicScopeDepth + m_finallyDepth; } in scopeDepth() function
|
D | BytecodeGenerator.cpp | 524 …LabelScope scope(type, name, scopeDepth(), newLabel(), type == LabelScope::Loop ? newLabel() : Pas… in newLabelScope() 1744 ASSERT(scopeDepth() - targetScopeDepth >= 0); in emitJumpScopes() 1747 size_t scopeDelta = scopeDepth() - targetScopeDepth; in emitJumpScopes()
|
/external/webkit/JavaScriptCore/bytecode/ |
D | CodeBlock.h | 72 uint32_t scopeDepth; member
|
/external/webkit/JavaScriptCore/parser/ |
D | Nodes.cpp | 1486 generator.emitJumpScopes(scope->continueTarget(), scope->scopeDepth()); in emitBytecode() 1504 generator.emitJumpScopes(scope->breakTarget(), scope->scopeDepth()); in emitBytecode() 1520 if (generator.scopeDepth()) { in emitBytecode()
|
/external/webkit/JavaScriptCore/interpreter/ |
D | Interpreter.cpp | 604 int scopeDelta = depth(codeBlock, sc) - handler->scopeDepth; in throwException()
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog-2008-08-10 | 10740 (KJS::CodeGenerator::scopeDepth): 12548 scopes and dynamic scopes ("with"). This means "scopeDepth" is now 12586 (KJS::CodeGenerator::scopeDepth):
|
D | ChangeLog-2009-06-16 | 25635 (JSC::LabelScope::scopeDepth): Simple abstraction for holding everything
|