HomeSort by relevance Sort by last modified time
    Searched refs:ProgramNode (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/JavaScriptCore/parser/
Nodes.cpp 113 // ------------------------------ ProgramNode -----------------------------
115 inline ProgramNode::ProgramNode(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, const SourceCode& source, CodeFeatures features, int numConstants)
120 PassRefPtr<ProgramNode> ProgramNode::create(JSGlobalData* globalData, SourceElements* children, VarStack* varStack, FunctionStack* funcStack, IdentifierSet& capturedVariables, const SourceCode& source, CodeFeatures features, int numConstants)
122 RefPtr<ProgramNode> node = new ProgramNode(globalData, children, varStack, funcStack, capturedVariables, source, features, numConstants);
Parser.h 43 class ProgramNode;
Nodes.h     [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
Executable.cpp 150 RefPtr<ProgramNode> programNode = globalData->parser->parse<ProgramNode>(lexicalGlobalObject, lexicalGlobalObject->debugger(), exec, m_source, 0, JSParseNormal, &exception);
151 if (programNode)
164 RefPtr<ProgramNode> programNode = globalData->parser->parse<ProgramNode>(lexicalGlobalObject, lexicalGlobalObject->debugger(), exec, m_source, 0, isStrictMode() ? JSParseStrict : JSParseNormal, &exception);
165 if (!programNode) {
169 recordParse(programNode->features(), programNode->hasCapturedVariables(), programNode->lineNo(), programNode->lastLine())
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 95 BytecodeGenerator(ProgramNode*, ScopeChainNode*, SymbolTable*, ProgramCodeBlock*);
BytecodeGenerator.cpp 201 BytecodeGenerator::BytecodeGenerator(ProgramNode* programNode, ScopeChainNode* scopeChain, SymbolTable* symbolTable, ProgramCodeBlock* codeBlock)
207 , m_scopeNode(programNode)
254 const VarStack& varStack = programNode->varStack();
255 const FunctionStack& functionStack = programNode->functionStack();
    [all...]
NodesCodegen.cpp     [all...]

Completed in 48 milliseconds