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

Last change on this file since 35007 was 35007, checked in by [email protected], 17 years ago

JavaScriptCore:

2008-07-04 Sam Weinig <[email protected]>

Rubber-stamped by Dan Bernstein.

Split Error and GetterSetter out of JSObject.h.

  • API/JSCallbackObjectFunctions.h:
  • GNUmakefile.am:
  • JavaScriptCore.pri:
  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • JavaScriptCoreSources.bkl:
  • kjs/AllInOneFile.cpp:
  • kjs/ClassInfo.h: Copied from JavaScriptCore/kjs/JSObject.h.
  • kjs/Error.cpp: Copied from JavaScriptCore/kjs/JSObject.cpp.
  • kjs/Error.h: Copied from JavaScriptCore/kjs/JSObject.h.
  • kjs/GetterSetter.cpp:
  • kjs/GetterSetter.h: Copied from JavaScriptCore/kjs/JSObject.h.
  • kjs/JSObject.cpp:
  • kjs/JSObject.h:
  • kjs/nodes.h:

JavaScriptGlue:

2008-07-04 Sam Weinig <[email protected]>

Rubber-stamped by Dan Bernstein.

  • JSObject.h: Rename the header guard as it now conflicts with the JSObject in JavaScriptCore.

WebCore:

2008-07-04 Sam Weinig <[email protected]>

Rubber-stamped by Dan Bernstein.

Split Error and GetterSetter out of JSObject.h.

  • ForwardingHeaders/kjs/Error.h: Added.
  • bindings/js/JSCanvasRenderingContext2DCustom.cpp:
  • bindings/js/JSClipboardCustom.cpp:
  • bindings/js/JSDOMWindowBase.cpp:
  • bindings/js/JSEventTargetBase.cpp:
  • bindings/js/JSHTMLDocumentCustom.cpp:
  • bindings/js/JSXMLHttpRequestCustom.cpp:
  • bindings/scripts/CodeGeneratorJS.pm:
  • bridge/NP_jsobject.cpp:
  • bridge/jni/jni_instance.cpp:
  • bridge/jni/jni_runtime.cpp:
  • bridge/objc/objc_instance.mm:
  • bridge/objc/objc_runtime.mm:
  • bridge/objc/objc_utility.h:
  • bridge/runtime_array.cpp:
  • bridge/runtime_method.cpp:
  • bridge/runtime_object.cpp:
  • Property svn:eol-style set to native
File size: 3.0 KB
Line 
1/*
2 * Copyright (C) 2006 Apple Inc. All rights reserved.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
18 *
19 */
20
21// This file exists to help compile the essential code of
22// JavaScriptCore all as one file, for compilers and build systems
23// that see a significant speed gain from this.
24
25#define KDE_USE_FINAL 1
26#define JAVASCRIPTCORE_BUILDING_ALL_IN_ONE_FILE 1
27#include "config.h"
28
29#include "JSFunction.cpp"
30#include "debugger.cpp"
31#include "JSArray.cpp"
32#include "ArrayConstructor.cpp"
33#include "ArrayPrototype.cpp"
34#include "BooleanConstructor.cpp"
35#include "BooleanObject.cpp"
36#include "BooleanPrototype.cpp"
37#include "collector.cpp"
38#if PLATFORM(DARWIN)
39#include "CollectorHeapIntrospector.cpp"
40#endif
41#include "CommonIdentifiers.cpp"
42#include "DateConstructor.cpp"
43#include "DateMath.cpp"
44#include "DatePrototype.cpp"
45#include "DateInstance.cpp"
46#include "dtoa.cpp"
47#include "ErrorInstance.cpp"
48#include "ErrorPrototype.cpp"
49#include "ErrorConstructor.cpp"
50#include "FunctionConstructor.cpp"
51#include "FunctionPrototype.cpp"
52#include "grammar.cpp"
53#include "identifier.cpp"
54#include "JSString.cpp"
55#include "JSNumberCell.cpp"
56#include "GetterSetter.cpp"
57#include "LabelStack.cpp"
58#include "InternalFunction.cpp"
59#include "interpreter.cpp"
60#include "JSImmediate.cpp"
61#include "JSLock.cpp"
62#include "JSWrapperObject.cpp"
63#include "lexer.cpp"
64#include "list.cpp"
65#include "lookup.cpp"
66#include "MathObject.cpp"
67#include "NativeErrorConstructor.cpp"
68#include "NativeErrorPrototype.cpp"
69#include "NumberConstructor.cpp"
70#include "NumberObject.cpp"
71#include "NumberPrototype.cpp"
72#include "nodes.cpp"
73#include "nodes2string.cpp"
74#include "JSObject.cpp"
75#include "Error.cpp"
76#include "JSGlobalObject.cpp"
77#include "ObjectConstructor.cpp"
78#include "ObjectPrototype.cpp"
79#include "operations.cpp"
80#include "Parser.cpp"
81#include "PropertyMap.cpp"
82#include "PropertySlot.cpp"
83#include "PropertyNameArray.cpp"
84#include "regexp.cpp"
85#include "RegExpConstructor.cpp"
86#include "RegExpObject.cpp"
87#include "RegExpPrototype.cpp"
88#include "ScopeChain.cpp"
89#include "StringConstructor.cpp"
90#include "StringObject.cpp"
91#include "StringPrototype.cpp"
92#include "ustring.cpp"
93#include "JSValue.cpp"
94#include "JSCell.cpp"
95#include "JSVariableObject.cpp"
96#include "wtf/FastMalloc.cpp"
97#include "wtf/TCSystemAlloc.cpp"
98#include "VM/CodeGenerator.cpp"
99#include "VM/RegisterFile.cpp"
Note: See TracBrowser for help on using the repository browser.