Changeset 2847 in webkit for trunk/JavaScriptCore/kjs/nodes.h


Ignore:
Timestamp:
Nov 24, 2002, 2:12:02 AM (23 years ago)
Author:
mjs
Message:
  • fixed 3095446 - Crash on AppleScript page due to very long argument list
  • kjs/grammar.y: Don't try to construct the argument list in the right order, since that blows out the parser stack.
  • kjs/nodes.cpp: (ArgumentsNode::ArgumentsNode): Instead reverse the argument list here.
  • kjs/nodes.h: Make ArgumentsNode a friend of ArgumentListNode.
  • kjs/grammar.cpp: Updated from grammar.y.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/nodes.h

    r2760 r2847  
    315315    virtual void streamTo(SourceStream &s) const;
    316316  private:
     317    friend class ArgumentsNode;
    317318    ArgumentListNode *list;
    318319    Node *expr;
Note: See TracChangeset for help on using the changeset viewer.