Home
last modified time | relevance | path

Searched refs:CatchFeature (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/JavaScriptCore/parser/
DNodes.h58 const CodeFeatures CatchFeature = 1 << 5; variable
64 …e | ClosureFeature | AssignFeature | ArgumentsFeature | WithFeature | CatchFeature | ThisFeature |…
1420 …riables() const { ASSERT(m_data); return m_features & (EvalFeature | WithFeature | CatchFeature); } in needsActivationForMoreThanVariables()
1421 …a); return (hasCapturedVariables()) || (m_features & (EvalFeature | WithFeature | CatchFeature)); } in needsActivation()
DASTBuilder.h616 void usesCatch() { m_scope.m_features |= CatchFeature; } in usesCatch()
/external/webkit/Source/JavaScriptCore/runtime/
DExecutable.h187 …const { return m_hasCapturedVariables || m_features & (EvalFeature | WithFeature | CatchFeature); } in needsActivation()