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

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

JavaScriptCore:

2008-09-21 Maciej Stachowiak <[email protected]>

Reviewed by Darin.


  • JavaScriptCore.exp:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • VM/CTI.cpp: (JSC::CTI::privateCompileMainPass): (JSC::CTI::privateCompilePutByIdTransition):
  • VM/Machine.cpp: (JSC::jsIsObjectType): (JSC::Machine::Machine):
  • kjs/AllInOneFile.cpp:
  • kjs/JSCell.h: (JSC::JSCell::isObject): (JSC::JSCell::isString):
  • kjs/JSGlobalData.cpp: (JSC::JSGlobalData::JSGlobalData):
  • kjs/JSGlobalObject.cpp: (JSC::JSGlobalObject::reset):
  • kjs/JSGlobalObject.h: (JSC::StructureID::prototypeForLookup):
  • kjs/JSNumberCell.h: (JSC::JSNumberCell::createStructureID):
  • kjs/JSObject.cpp: (JSC::JSObject::createInheritorID):
  • kjs/JSObject.h: (JSC::JSObject::createStructureID):
  • kjs/JSString.h: (JSC::JSString::createStructureID):
  • kjs/NativeErrorConstructor.cpp: (JSC::NativeErrorConstructor::NativeErrorConstructor):
  • kjs/RegExpConstructor.cpp:
  • kjs/RegExpMatchesArray.h: Added. (JSC::RegExpMatchesArray::getOwnPropertySlot): (JSC::RegExpMatchesArray::put): (JSC::RegExpMatchesArray::deleteProperty): (JSC::RegExpMatchesArray::getPropertyNames):
  • kjs/StructureID.cpp: (JSC::StructureID::StructureID): (JSC::StructureID::addPropertyTransition): (JSC::StructureID::toDictionaryTransition): (JSC::StructureID::changePrototypeTransition): (JSC::StructureID::getterSetterTransition):
  • kjs/StructureID.h: (JSC::StructureID::create): (JSC::StructureID::typeInfo):
  • kjs/TypeInfo.h: Added. (JSC::TypeInfo::TypeInfo): (JSC::TypeInfo::type):

WebCore:

2008-09-21 Maciej Stachowiak <[email protected]>

Reviewed by Darin.


  • bindings/js/JSAudioConstructor.cpp: (WebCore::JSAudioConstructor::JSAudioConstructor):
  • bindings/js/JSCSSStyleDeclarationCustom.cpp: (WebCore::JSCSSStyleDeclaration::nameGetter):
  • bindings/js/JSDOMBinding.cpp: (WebCore::createDOMStructure):
  • bindings/js/JSDOMBinding.h: (WebCore::getDOMStructure):
  • bindings/js/JSDOMWindowShell.cpp: (WebCore::JSDOMWindowShell::JSDOMWindowShell): (WebCore::JSDOMWindowShell::setWindow):
  • bindings/js/JSEventTargetNode.cpp: (WebCore::JSEventTargetNode::createPrototype):
  • bindings/js/JSHTMLOptionElementConstructor.cpp: (WebCore::JSHTMLOptionElementConstructor::JSHTMLOptionElementConstructor):
  • bindings/js/JSImageConstructor.cpp: (WebCore::JSImageConstructor::JSImageConstructor):
  • bindings/js/JSXMLHttpRequestConstructor.cpp: (WebCore::JSXMLHttpRequestConstructor::JSXMLHttpRequestConstructor):
  • bindings/js/JSXSLTProcessorConstructor.cpp: (WebCore::JSXSLTProcessorConstructor::JSXSLTProcessorConstructor):
  • bindings/scripts/CodeGeneratorJS.pm:
  • Property svn:eol-style set to native
File size: 3.4 KB
Line 
1/*
2 * Copyright (C) 2006, 2008 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// these headers are included here to avoid confusion between ::JSType and JSC::JSType
30#include "JSCallbackConstructor.h"
31#include "JSCallbackFunction.h"
32#include "JSCallbackObject.h"
33
34#include "JSStaticScopeObject.cpp"
35#include "JSFunction.cpp"
36#include "Arguments.cpp"
37#include "JSGlobalObjectFunctions.cpp"
38#include "PrototypeFunction.cpp"
39#include "GlobalEvalFunction.cpp"
40#include "debugger.cpp"
41#include "JSArray.cpp"
42#include "ArrayConstructor.cpp"
43#include "ArrayPrototype.cpp"
44#include "BooleanConstructor.cpp"
45#include "BooleanObject.cpp"
46#include "BooleanPrototype.cpp"
47#include "collector.cpp"
48#include "CommonIdentifiers.cpp"
49#include "DateConstructor.cpp"
50#include "DateMath.cpp"
51#include "DatePrototype.cpp"
52#include "DateInstance.cpp"
53#include "dtoa.cpp"
54#include "ErrorInstance.cpp"
55#include "ErrorPrototype.cpp"
56#include "ErrorConstructor.cpp"
57#include "FunctionConstructor.cpp"
58#include "FunctionPrototype.cpp"
59#include "grammar.cpp"
60#include "identifier.cpp"
61#include "JSString.cpp"
62#include "JSNumberCell.cpp"
63#include "GetterSetter.cpp"
64#include "LabelStack.cpp"
65#include "InternalFunction.cpp"
66#include "interpreter.cpp"
67#include "JSImmediate.cpp"
68#include "JSLock.cpp"
69#include "JSWrapperObject.cpp"
70#include "lexer.cpp"
71#include "ArgList.cpp"
72#include "lookup.cpp"
73#include "MathObject.cpp"
74#include "NativeErrorConstructor.cpp"
75#include "NativeErrorPrototype.cpp"
76#include "NumberConstructor.cpp"
77#include "NumberObject.cpp"
78#include "NumberPrototype.cpp"
79#include "nodes.cpp"
80#include "nodes2string.cpp"
81#include "JSObject.cpp"
82#include "Error.cpp"
83#include "JSGlobalObject.cpp"
84#include "ObjectConstructor.cpp"
85#include "ObjectPrototype.cpp"
86#include "operations.cpp"
87#include "Parser.cpp"
88#include "PropertyMap.cpp"
89#include "PropertySlot.cpp"
90#include "PropertyNameArray.cpp"
91#include "regexp.cpp"
92#include "RegExpConstructor.cpp"
93#include "RegExpObject.cpp"
94#include "RegExpPrototype.cpp"
95#include "ScopeChain.cpp"
96#include "StringConstructor.cpp"
97#include "StringObject.cpp"
98#include "StringPrototype.cpp"
99#include "ustring.cpp"
100#include "JSValue.cpp"
101#include "CallData.cpp"
102#include "ConstructData.cpp"
103#include "JSCell.cpp"
104#include "JSVariableObject.cpp"
105#include "wtf/FastMalloc.cpp"
106#include "wtf/TCSystemAlloc.cpp"
107#include "VM/CodeGenerator.cpp"
108#include "VM/RegisterFile.cpp"
Note: See TracBrowser for help on using the repository browser.