source: webkit/trunk/JavaScriptCore/kjs/AllInOneFile.cpp@ 27097

Last change on this file since 27097 was 27097, checked in by mjs, 18 years ago

JavaScriptCore:

Reviewed by Oliver.


  • moved Context class into ExecState.{h,cpp} in preparation for merging ExecState and Context classes.
  • kjs/ExecState.h: Moved CodeType enum and Context class here in preparation for merging ExecState and Context.
  • kjs/ExecState.cpp: Moved Context class here from Context.cpp. (KJS::Context::Context): (KJS::Context::~Context): (KJS::Context::mark):
  • kjs/context.h: Removed.
  • kjs/Context.cpp: Removed.
  • kjs/function.h: Removed CodeType enum.
  • kjs/LabelStack.h: Added. Pulled LabelStack class out of internal.h.
  • kjs/internal.h: Removed LabelStack.
  • JavaScriptCore.xcodeproj/project.pbxproj: Added new file, removed ones that are gone.
  • kjs/collector.cpp: Fixed includes.
  • kjs/function.cpp: ditto
  • kjs/internal.cpp: ditto
  • kjs/interpreter.cpp: ditto
  • kjs/lookup.h: ditto
  • kjs/nodes.cpp: ditto

WebCore:

Reviewed by Oliver.

  • bindings/objc/WebScriptObject.mm:
  • bridge/mac/WebCoreScriptDebugger.mm:
File size: 2.2 KB
Line 
1// -*- mode: c++; c-basic-offset: 4 -*-
2/*
3 * Copyright (C) 2006 Apple Computer, Inc
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
14 *
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
19 *
20 */
21
22// This file exists to help compile the essential code of
23// JavaScriptCore all as one file, for compilers and build systems
24// that see a significant speed gain from this.
25
26#define KDE_USE_FINAL 1
27#include "config.h"
28
29#include "function.cpp"
30#include "debugger.cpp"
31#include "array_instance.cpp"
32#include "array_object.cpp"
33#include "bool_object.cpp"
34#include "collector.cpp"
35#if PLATFORM(DARWIN)
36#include "CollectorHeapIntrospector.cpp"
37#endif
38#include "CommonIdentifiers.cpp"
39#include "date_object.cpp"
40#include "DateMath.cpp"
41#include "dtoa.cpp"
42#include "error_object.cpp"
43#include "ExecState.cpp"
44#include "function_object.cpp"
45#include "grammar.cpp"
46#include "identifier.cpp"
47#include "internal.cpp"
48#include "interpreter.cpp"
49#include "JSImmediate.cpp"
50#include "JSLock.cpp"
51#include "JSWrapperObject.cpp"
52#include "lexer.cpp"
53#include "list.cpp"
54#include "lookup.cpp"
55#include "math_object.cpp"
56#include "nodes.cpp"
57#include "nodes2string.cpp"
58#include "number_object.cpp"
59#include "object.cpp"
60#include "object_object.cpp"
61#include "operations.cpp"
62#include "Parser.cpp"
63#include "property_map.cpp"
64#include "property_slot.cpp"
65#include "PropertyNameArray.cpp"
66#include "regexp.cpp"
67#include "regexp_object.cpp"
68#include "scope_chain.cpp"
69#include "string_object.cpp"
70#include "ustring.cpp"
71#include "value.cpp"
72#include "wtf/FastMalloc.cpp"
73#include "wtf/TCSystemAlloc.cpp"
Note: See TracBrowser for help on using the repository browser.