Changeset 27219 in webkit for trunk/JavaScriptCore/kjs


Ignore:
Timestamp:
Oct 29, 2007, 1:31:46 AM (18 years ago)
Author:
[email protected]
Message:

2007-10-29 Mark Rowe <[email protected]>

Gtk build fix. Move struct declarations into nodes.h.

  • kjs/grammar.y:
  • kjs/nodes.h:
Location:
trunk/JavaScriptCore/kjs
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/grammar.y

    r27215 r27219  
    8080
    8181#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 };
    11782
    11883%}
  • trunk/JavaScriptCore/kjs/nodes.h

    r27216 r27219  
    16711671  };
    16721672
     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
    16731708} // namespace
    16741709
Note: See TracChangeset for help on using the changeset viewer.