Changeset 76248 in webkit for trunk/Source/JavaScriptCore/parser/Nodes.h
- Timestamp:
- Jan 20, 2011, 8:30:54 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Nodes.h
r75408 r76248 1377 1377 }; 1378 1378 1379 struct ScopeNodeData : FastAllocBase { 1379 struct ScopeNodeData { 1380 WTF_MAKE_FAST_ALLOCATED; 1381 public: 1380 1382 typedef DeclarationStacks::VarStack VarStack; 1381 1383 typedef DeclarationStacks::FunctionStack FunctionStack; … … 1473 1475 1474 1476 class FunctionParameters : public Vector<Identifier>, public RefCounted<FunctionParameters> { 1477 WTF_MAKE_FAST_ALLOCATED; 1475 1478 public: 1476 1479 static PassRefPtr<FunctionParameters> create(ParameterNode* firstParameter) { return adoptRef(new FunctionParameters(firstParameter)); }
Note:
See TracChangeset
for help on using the changeset viewer.