Changeset 127939 in webkit for trunk/Source/JavaScriptCore/parser/Nodes.h
- Timestamp:
- Sep 7, 2012, 4:59:10 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Nodes.h
r127810 r127939 86 86 87 87 namespace DeclarationStacks { 88 struct VarDeclaration { 89 VarDeclaration(const Identifier* name, unsigned attributes) 90 : name(name) 91 , attributes(attributes) 92 , reg(0) 93 { 94 } 95 const Identifier* name; 96 unsigned attributes; 97 RegisterID* reg; 98 }; 99 struct FunctionDeclaration { 100 explicit FunctionDeclaration(FunctionBodyNode* node) 101 : node(node) 102 , reg(0) 103 { 104 } 105 FunctionBodyNode* node; 106 RegisterID* reg; 107 }; 88 108 enum VarAttrs { IsConstant = 1, HasInitializer = 2 }; 89 typedef Vector< std::pair<const Identifier*, unsigned>> VarStack;90 typedef Vector<Function BodyNode*> FunctionStack;109 typedef Vector<VarDeclaration> VarStack; 110 typedef Vector<FunctionDeclaration> FunctionStack; 91 111 } 92 112
Note:
See TracChangeset
for help on using the changeset viewer.