Searched defs:EvalFeature (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/JavaScriptCore/parser/
H A DNodes.h53 const CodeFeatures EvalFeature = 1 << 0; member in namespace:JSC
64 const CodeFeatures AllFeatures = EvalFeature | ClosureFeature | AssignFeature | ArgumentsFeature | WithFeature | CatchFeature | ThisFeature | StrictModeFeature | ShadowsArgumentsFeature;
1415 bool usesEval() const { return m_features & EvalFeature; }
1420 bool needsActivationForMoreThanVariables() const { ASSERT(m_data); return m_features & (EvalFeature | WithFeature | CatchFeature); }
1421 bool needsActivation() const { ASSERT(m_data); return (hasCapturedVariables()) || (m_features & (EvalFeature | WithFeature | CatchFeature)); }

Completed in 29 milliseconds