Home
last modified time | relevance | path

Searched refs:StrictModeFeature (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
DExecutable.h154 , m_features(isInStrictContext ? StrictModeFeature : 0) in ScriptExecutable()
168 , m_features(isInStrictContext ? StrictModeFeature : 0) in ScriptExecutable()
188 bool isStrictMode() const { return m_features & StrictModeFeature; } in isStrictMode()
/external/webkit/Source/JavaScriptCore/parser/
DNodes.cpp95 , m_features(inStrictContext ? StrictModeFeature : NoFeatures) in ScopeNode()
DNodes.h60 const CodeFeatures StrictModeFeature = 1 << 7; variable
64 …ure | ArgumentsFeature | WithFeature | CatchFeature | ThisFeature | StrictModeFeature | ShadowsArg…
1417 bool isStrictMode() const { return m_features & StrictModeFeature; } in isStrictMode()
DJSParser.cpp663 features |= StrictModeFeature; in parseProgram()