Changeset 43270 in webkit for trunk/JavaScriptCore/parser/Nodes.h


Ignore:
Timestamp:
May 5, 2009, 6:22:42 PM (16 years ago)
Author:
[email protected]
Message:

2009-05-05 Sam Weinig <[email protected]>

Try to fix Windows build.

Move Node constructor to the .cpp file.

  • parser/Nodes.cpp:
  • parser/Nodes.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/parser/Nodes.h

    r43259 r43270  
    2929#include "Error.h"
    3030#include "JITCode.h"
    31 #include "Lexer.h"
    3231#include "Opcode.h"
    3332#include "ResultType.h"
     
    127126    class Node : public ParserRefCounted {
    128127    public:
    129         Node(JSGlobalData* globalData) JSC_FAST_CALL
    130             : ParserRefCounted(globalData)
    131             , m_line(globalData->lexer->lineNumber())
    132         {
    133         }
     128        Node(JSGlobalData* globalData) JSC_FAST_CALL;
    134129
    135130        /*
Note: See TracChangeset for help on using the changeset viewer.