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


Ignore:
Timestamp:
Mar 5, 2006, 9:29:48 PM (19 years ago)
Author:
darin
Message:

Reviewed by Maciej.

  • kjs/Parser.cpp: Added.
  • kjs/Parser.h: Added.
  • kjs/internal.cpp: Removed the Parser class.
  • kjs/internal.h: Ditto. Also removed unnecessary declarations of classes not used in this header.
  • kjs/nodes.h: Added an include of "Parser.h".
  • kjs/function.h: Added a declaration of FunctionBodyNode.
File:
1 edited

Legend:

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

    r13138 r13153  
    44 *  Copyright (C) 1999-2000 Harri Porten ([email protected])
    55 *  Copyright (C) 2001 Peter Kelly ([email protected])
    6  *  Copyright (C) 2003 Apple Computer, Inc.
     6 *  Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc.
    77 *
    88 *  This library is free software; you can redistribute it and/or
     
    2323 */
    2424
    25 #ifndef _NODES_H_
    26 #define _NODES_H_
    27 
     25#ifndef NODES_H_
     26#define NODES_H_
     27
     28#include "Parser.h"
     29#include "internal.h"
     30#include <kxmlcore/ListRefPtr.h>
    2831#include <kxmlcore/RefPtr.h>
    29 #include <kxmlcore/ListRefPtr.h>
    30 
    31 #include "internal.h"
    3232
    3333namespace KJS {
Note: See TracChangeset for help on using the changeset viewer.