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

/macosx-10.9.5/JavaScriptCore-7537.78.1/interpreter/
H A DInterpreter.cpp800 int scopeDelta = 0; local
805 scopeDelta = currentDepth - targetDepth;
806 RELEASE_ASSERT(scopeDelta >= 0);
808 while (scopeDelta--)
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecompiler/
H A DBytecodeGenerator.cpp2268 size_t scopeDelta = scopeDepth() - targetScopeDepth; local
2269 ASSERT(scopeDelta <= m_scopeContextStack.size());
2270 if (!scopeDelta)
2274 while (scopeDelta--)
2279 emitComplexPopScopes(&m_scopeContextStack.last(), &m_scopeContextStack.last() - scopeDelta);

Completed in 177 milliseconds