Searched refs:targetScopeDepth (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10.1/JavaScriptCore-7600.1.17/interpreter/
H A DInterpreter.cpp748 int targetScopeDepth = handler->scopeDepth; local
750 ++targetScopeDepth;
753 int scopeDelta = scope->depth() - targetScopeDepth;
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecompiler/
H A DBytecodeGenerator.h109 unsigned targetScopeDepth; member in struct:JSC::TryData
409 void emitPopScopes(int targetScopeDepth);
H A DBytecodeGenerator.cpp105 ASSERT(range.tryData->targetScopeDepth != UINT_MAX);
109 range.tryData->targetScopeDepth
2197 void BytecodeGenerator::emitPopScopes(int targetScopeDepth) argument
2199 ASSERT(scopeDepth() - targetScopeDepth >= 0);
2201 size_t scopeDelta = scopeDepth() - targetScopeDepth;
2246 tryData.targetScopeDepth = UINT_MAX;
2273 tryRange.tryData->targetScopeDepth = m_localScopeDepth;

Completed in 86 milliseconds