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 "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 "function_object.cpp"
|
---|
44 | #include "grammar.cpp"
|
---|
45 | #include "identifier.cpp"
|
---|
46 | #include "internal.cpp"
|
---|
47 | #include "interpreter.cpp"
|
---|
48 | #include "JSImmediate.cpp"
|
---|
49 | #include "JSLock.cpp"
|
---|
50 | #include "JSWrapperObject.cpp"
|
---|
51 | #include "lexer.cpp"
|
---|
52 | #include "list.cpp"
|
---|
53 | #include "lookup.cpp"
|
---|
54 | #include "math_object.cpp"
|
---|
55 | #include "nodes.cpp"
|
---|
56 | #include "nodes2string.cpp"
|
---|
57 | #include "number_object.cpp"
|
---|
58 | #include "object.cpp"
|
---|
59 | #include "object_object.cpp"
|
---|
60 | #include "operations.cpp"
|
---|
61 | #include "Parser.cpp"
|
---|
62 | #include "property_map.cpp"
|
---|
63 | #include "property_slot.cpp"
|
---|
64 | #include "PropertyNameArray.cpp"
|
---|
65 | #include "regexp.cpp"
|
---|
66 | #include "regexp_object.cpp"
|
---|
67 | #include "scope_chain.cpp"
|
---|
68 | #include "string_object.cpp"
|
---|
69 | #include "ustring.cpp"
|
---|
70 | #include "value.cpp"
|
---|
71 | #include "wtf/FastMalloc.cpp"
|
---|
72 | #include "wtf/TCSystemAlloc.cpp"
|
---|
73 | #include "VM/CodeGenerator.cpp"
|
---|
74 | #include "VM/RegisterFile.cpp"
|
---|