Home
last modified time | relevance | path

Searched refs:scopeDepth (Results 1 – 9 of 9) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
DScopeChain.cpp56 int scopeDepth = 0; in localDepth() local
63 ++scopeDepth; in localDepth()
65 return scopeDepth; in localDepth()
/external/webkit/JavaScriptCore/bytecompiler/
DLabelScope.h43 …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
DBytecodeGenerator.h328 int scopeDepth() { return m_dynamicScopeDepth + m_finallyDepth; } in scopeDepth() function
DBytecodeGenerator.cpp524 …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/
DCodeBlock.h72 uint32_t scopeDepth; member
/external/webkit/JavaScriptCore/parser/
DNodes.cpp1486 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/
DInterpreter.cpp604 int scopeDelta = depth(codeBlock, sc) - handler->scopeDepth; in throwException()
/external/webkit/JavaScriptCore/
DChangeLog-2008-08-1010740 (KJS::CodeGenerator::scopeDepth):
12548 scopes and dynamic scopes ("with"). This means "scopeDepth" is now
12586 (KJS::CodeGenerator::scopeDepth):
DChangeLog-2009-06-1625635 (JSC::LabelScope::scopeDepth): Simple abstraction for holding everything