Changeset 27219 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Oct 29, 2007, 1:31:46 AM (18 years ago)
- Location:
- trunk/JavaScriptCore/kjs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/grammar.y
r27215 r27219 80 80 81 81 #endif 82 83 struct ElementList {84 ElementNode* head;85 ElementNode* tail;86 };87 88 struct PropertyList {89 PropertyListNode* head;90 PropertyListNode* tail;91 };92 93 struct ArgumentList {94 ArgumentListNode* head;95 ArgumentListNode* tail;96 };97 98 struct VarDeclList {99 VarDeclListNode* head;100 VarDeclListNode* tail;101 };102 103 struct ParameterList {104 ParameterNode* head;105 ParameterNode* tail;106 };107 108 struct SourceElementList {109 SourceElementsNode* head;110 SourceElementsNode* tail;111 };112 113 struct ClauseList {114 ClauseListNode* head;115 ClauseListNode* tail;116 };117 82 118 83 %} -
trunk/JavaScriptCore/kjs/nodes.h
r27216 r27219 1671 1671 }; 1672 1672 1673 struct ElementList { 1674 ElementNode* head; 1675 ElementNode* tail; 1676 }; 1677 1678 struct PropertyList { 1679 PropertyListNode* head; 1680 PropertyListNode* tail; 1681 }; 1682 1683 struct ArgumentList { 1684 ArgumentListNode* head; 1685 ArgumentListNode* tail; 1686 }; 1687 1688 struct VarDeclList { 1689 VarDeclListNode* head; 1690 VarDeclListNode* tail; 1691 }; 1692 1693 struct ParameterList { 1694 ParameterNode* head; 1695 ParameterNode* tail; 1696 }; 1697 1698 struct SourceElementList { 1699 SourceElementsNode* head; 1700 SourceElementsNode* tail; 1701 }; 1702 1703 struct ClauseList { 1704 ClauseListNode* head; 1705 ClauseListNode* tail; 1706 }; 1707 1673 1708 } // namespace 1674 1709
Note:
See TracChangeset
for help on using the changeset viewer.