Searched refs:ConstDeclNode (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/JavaScriptCore/parser/
H A DNodeInfo.h38 typedef NodeInfo<ConstDeclNode*> ConstDeclNodeInfo;
H A DNodes.h1107 class ConstDeclNode : public ExpressionNode { class in namespace:JSC
1109 ConstDeclNode(JSGlobalData*, const Identifier&, ExpressionNode*);
1121 ConstDeclNode* m_next;
1129 ConstStatementNode(JSGlobalData*, ConstDeclNode* next);
1134 ConstDeclNode* m_next;
1603 ConstDeclNode* head;
1604 ConstDeclNode* tail;
H A DASTBuilder.h106 typedef ConstDeclNode* ConstDeclList;
473 StatementNode* createConstStatement(ConstDeclNode* decls, int startLine, int endLine)
480 ConstDeclNode* appendConstDecl(ConstDeclNode* tail, const Identifier* name, ExpressionNode* initializer)
482 ConstDeclNode* result = new (m_globalData) ConstDeclNode(m_globalData, *name, initializer);
H A DNodeConstructors.h672 inline ConstStatementNode::ConstStatementNode(JSGlobalData* globalData, ConstDeclNode* next)
864 inline ConstDeclNode::ConstDeclNode(JSGlobalData* globalData, const Identifier& ident, ExpressionNode* init) function in class:JSC::ConstDeclNode
/external/webkit/Source/JavaScriptCore/bytecompiler/
H A DNodesCodegen.cpp1293 // ------------------------------ ConstDeclNode ------------------------------------
1295 RegisterID* ConstDeclNode::emitCodeSingle(BytecodeGenerator& generator)
1317 RegisterID* ConstDeclNode::emitBytecode(BytecodeGenerator& generator, RegisterID*)
1320 for (ConstDeclNode* n = this; n; n = n->m_next)

Completed in 89 milliseconds