Home
last modified time | relevance | path

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

/external/webkit/Source/JavaScriptCore/parser/
DNodes.h57 const CodeFeatures WithFeature = 1 << 4; variable
64 …es = EvalFeature | ClosureFeature | AssignFeature | ArgumentsFeature | WithFeature | CatchFeature …
1420 …Variables() const { ASSERT(m_data); return m_features & (EvalFeature | WithFeature | CatchFeature)… in needsActivationForMoreThanVariables()
1421 …data); return (hasCapturedVariables()) || (m_features & (EvalFeature | WithFeature | CatchFeature)… in needsActivation()
DASTBuilder.h620 void usesWith() { m_scope.m_features |= WithFeature; } in usesWith()
/external/webkit/Source/JavaScriptCore/runtime/
DExecutable.h187 …) const { return m_hasCapturedVariables || m_features & (EvalFeature | WithFeature | CatchFeature)… in needsActivation()