Changeset 35021 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jul 5, 2008, 5:10:04 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 13 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r35020 r35021 1 2008-07-05 Sam Weinig <[email protected]> 2 3 Rubber-stamped by Cameron Zwarich. 4 5 Rename list.h/cpp to ArgList.h/cpp. 6 7 * GNUmakefile.am: 8 * JavaScriptCore.pri: 9 * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj: 10 * JavaScriptCore.xcodeproj/project.pbxproj: 11 * JavaScriptCoreSources.bkl: 12 * VM/Machine.h: 13 * kjs/AllInOneFile.cpp: 14 * kjs/ArgList.cpp: Copied from JavaScriptCore/kjs/list.cpp. 15 * kjs/ArgList.h: Copied from JavaScriptCore/kjs/list.h. 16 * kjs/IndexToNameMap.cpp: 17 * kjs/JSGlobalData.cpp: 18 * kjs/JSGlobalData.h: 19 * kjs/JSObject.h: 20 * kjs/collector.cpp: 21 * kjs/list.cpp: Removed. 22 * kjs/list.h: Removed. 23 1 24 2008-07-05 Sam Weinig <[email protected]> 2 25 -
trunk/JavaScriptCore/GNUmakefile.am
r35016 r35021 75 75 76 76 javascriptcore_sources += \ 77 JavaScriptCore/kjs/ArgList.cpp \ 77 78 JavaScriptCore/kjs/Arguments.cpp \ 78 79 JavaScriptCore/kjs/ArrayConstructor.cpp \ … … 116 117 JavaScriptCore/kjs/LabelStack.cpp \ 117 118 JavaScriptCore/kjs/lexer.cpp \ 118 JavaScriptCore/kjs/list.cpp \119 119 JavaScriptCore/kjs/lookup.cpp \ 120 120 JavaScriptCore/kjs/MathObject.cpp \ -
trunk/JavaScriptCore/JavaScriptCore.pri
r35016 r35021 62 62 # Other compilers may be able to do this at link time 63 63 SOURCES += \ 64 kjs/ArgList.cpp \ 64 65 kjs/Arguments.cpp \ 65 66 kjs/ArrayConstructor.cpp \ … … 103 104 kjs/LabelStack.cpp \ 104 105 kjs/lexer.cpp \ 105 kjs/list.cpp \106 106 kjs/lookup.cpp \ 107 107 kjs/MathObject.cpp \ -
trunk/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj
r35016 r35021 270 270 > 271 271 <File 272 RelativePath="..\..\kjs\Activation.h" 272 RelativePath="..\..\kjs\ArgList.cpp" 273 > 274 </File> 275 <File 276 RelativePath="..\..\kjs\ArgList.h" 273 277 > 274 278 </File> … … 643 647 <File 644 648 RelativePath="..\..\kjs\LabelStack.h" 645 >646 </File>647 <File648 RelativePath="..\..\kjs\list.cpp"649 >650 </File>651 <File652 RelativePath="..\..\kjs\list.h"653 649 > 654 650 </File> -
trunk/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj
r35016 r35021 179 179 BC18C4300E16F5CD00B34460 /* LabelStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 65B813A80CD1D01900DF59D6 /* LabelStack.h */; settings = {ATTRIBUTES = (Private, ); }; }; 180 180 BC18C4310E16F5CD00B34460 /* lexer.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A8660255597D01FF60F7 /* lexer.h */; }; 181 BC18C4330E16F5CD00B34460 /* list.h in Headers */ = {isa = PBXBuildFile; fileRef = 931C6CEF038EE8DE008635CE /* list.h */; settings = {ATTRIBUTES = (Private, ); }; };182 181 BC18C4340E16F5CD00B34460 /* ListHashSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 657EB7450B708F540063461B /* ListHashSet.h */; settings = {ATTRIBUTES = (Private, ); }; }; 183 182 BC18C4350E16F5CD00B34460 /* ListRefPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 148A1626095D16BB00666D0D /* ListRefPtr.h */; settings = {ATTRIBUTES = (Private, ); }; }; … … 268 267 BCD2034C0E17135E002C7E82 /* DatePrototype.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD203480E17135E002C7E82 /* DatePrototype.h */; }; 269 268 BCD203E80E1718F4002C7E82 /* DatePrototype.lut.h in Headers */ = {isa = PBXBuildFile; fileRef = BCD203E70E1718F4002C7E82 /* DatePrototype.lut.h */; }; 269 BCF605140E203EF800B9A64D /* ArgList.h in Headers */ = {isa = PBXBuildFile; fileRef = BCF605120E203EF800B9A64D /* ArgList.h */; settings = {ATTRIBUTES = (Private, ); }; }; 270 270 E178636D0D9BEEC300D74E75 /* InitializeThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E178636C0D9BEEC300D74E75 /* InitializeThreading.cpp */; }; 271 271 E18E3A590DF9278C00D90B34 /* JSGlobalData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E18E3A570DF9278C00D90B34 /* JSGlobalData.cpp */; }; … … 559 559 930754CE08B0F74500AB3056 /* pcre_tables.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; name = pcre_tables.cpp; path = pcre/pcre_tables.cpp; sourceTree = "<group>"; tabWidth = 8; }; 560 560 930754E908B0F78500AB3056 /* pcre_exec.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; name = pcre_exec.cpp; path = pcre/pcre_exec.cpp; sourceTree = "<group>"; tabWidth = 8; }; 561 931C6CEF038EE8DE008635CE /* list.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = list.h; sourceTree = "<group>"; tabWidth = 8; };562 931C6CF0038EE8DE008635CE /* list.cpp */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = list.cpp; sourceTree = "<group>"; tabWidth = 8; };563 561 9322A00306C341D3009067BB /* libicucore.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libicucore.dylib; path = /usr/lib/libicucore.dylib; sourceTree = "<absolute>"; }; 564 562 932F5BD80822A1C700736975 /* Info.plist */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; tabWidth = 8; usesTabs = 1; }; … … 684 682 BCD203480E17135E002C7E82 /* DatePrototype.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DatePrototype.h; sourceTree = "<group>"; }; 685 683 BCD203E70E1718F4002C7E82 /* DatePrototype.lut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DatePrototype.lut.h; sourceTree = "<group>"; }; 684 BCF605110E203EF800B9A64D /* ArgList.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ArgList.cpp; sourceTree = "<group>"; }; 685 BCF605120E203EF800B9A64D /* ArgList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArgList.h; sourceTree = "<group>"; }; 686 686 BCF6553B0A2048DE0038A194 /* MathExtras.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = MathExtras.h; sourceTree = "<group>"; }; 687 687 D21202280AD4310C00ED79B6 /* DateMath.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = DateMath.cpp; sourceTree = "<group>"; }; … … 1065 1065 children = ( 1066 1066 659126BC0BDD1728001921FB /* AllInOneFile.cpp */, 1067 BCF605110E203EF800B9A64D /* ArgList.cpp */, 1068 BCF605120E203EF800B9A64D /* ArgList.h */, 1067 1069 BC257DE50E1F51C50016B6C9 /* Arguments.cpp */, 1068 1070 BC257DE60E1F51C50016B6C9 /* Arguments.h */, … … 1164 1166 BC02E9B70E1844CF000F9297 /* LabelStack.cpp */, 1165 1167 65B813A80CD1D01900DF59D6 /* LabelStack.h */, 1166 931C6CF0038EE8DE008635CE /* list.cpp */,1167 931C6CEF038EE8DE008635CE /* list.h */,1168 1168 F692A8680255597D01FF60F7 /* lookup.cpp */, 1169 1169 F692A8690255597D01FF60F7 /* lookup.h */, … … 1385 1385 BC18C4300E16F5CD00B34460 /* LabelStack.h in Headers */, 1386 1386 BC18C4310E16F5CD00B34460 /* lexer.h in Headers */, 1387 BC18C4330E16F5CD00B34460 /* list.h in Headers */,1388 1387 BC18C4340E16F5CD00B34460 /* ListHashSet.h in Headers */, 1389 1388 BC18C4350E16F5CD00B34460 /* ListRefPtr.h in Headers */, … … 1486 1485 BC257DF40E1F53740016B6C9 /* PrototypeFunction.h in Headers */, 1487 1486 BC756FC90E2031B200DE7D12 /* JSGlobalObjectFunctions.h in Headers */, 1487 BCF605140E203EF800B9A64D /* ArgList.h in Headers */, 1488 1488 ); 1489 1489 runOnlyForDeploymentPostprocessing = 0; -
trunk/JavaScriptCore/JavaScriptCoreSources.bkl
r35016 r35021 44 44 <set append="1" var="JSCORE_SOURCES_KJS"> 45 45 DerivedSources/JavaScriptCore/grammar.cpp 46 kjs/ArgList.cpp 46 47 kjs/Arguments.cpp 47 48 kjs/ArrayConstructor.cpp … … 91 92 kjs/LabelStack.cpp 92 93 kjs/lexer.cpp 93 kjs/list.cpp94 94 kjs/lookup.cpp 95 95 kjs/MathObject.cpp -
trunk/JavaScriptCore/VM/Machine.h
r34964 r35021 30 30 #define Machine_h 31 31 32 #include "ArgList.h" 32 33 #include "JSCell.h" 33 34 #include "JSValue.h" 34 35 #include "Opcode.h" 35 36 #include "RegisterFile.h" 36 #include <kjs/list.h>37 37 #include <wtf/HashMap.h> 38 38 -
trunk/JavaScriptCore/kjs/AllInOneFile.cpp
r35016 r35021 67 67 #include "JSWrapperObject.cpp" 68 68 #include "lexer.cpp" 69 #include " list.cpp"69 #include "ArgList.cpp" 70 70 #include "lookup.cpp" 71 71 #include "MathObject.cpp" -
trunk/JavaScriptCore/kjs/ArgList.cpp
r35006 r35021 20 20 21 21 #include "config.h" 22 #include " list.h"22 #include "ArgList.h" 23 23 24 24 #include "JSValue.h" -
trunk/JavaScriptCore/kjs/ArgList.h
r35006 r35021 20 20 */ 21 21 22 #ifndef KJS_LIST_H23 #define KJS_LIST_H22 #ifndef ArgList_h 23 #define ArgList_h 24 24 25 25 #include "JSImmediate.h" … … 31 31 32 32 class JSValue; 33 class ArgList;34 33 35 34 class ArgList : Noncopyable { … … 139 138 void operator delete(void*, size_t); 140 139 }; 141 140 142 141 } // namespace KJS 143 142 144 #endif // KJS_LIST_H143 #endif // ArgList_h -
trunk/JavaScriptCore/kjs/IndexToNameMap.cpp
r35019 r35021 26 26 #include "IndexToNameMap.h" 27 27 28 #include "ArgList.h" 28 29 #include "JSFunction.h" 29 30 #include "identifier.h" 30 #include "list.h"31 31 32 32 namespace KJS { -
trunk/JavaScriptCore/kjs/JSGlobalData.cpp
r34979 r35021 30 30 #include "JSGlobalData.h" 31 31 32 #include " collector.h"32 #include "ArgList.h" 33 33 #include "CommonIdentifiers.h" 34 34 #include "JSLock.h" 35 #include "Machine.h" 36 #include "Parser.h" 37 #include "collector.h" 35 38 #include "lexer.h" 36 #include "list.h"37 39 #include "lookup.h" 38 #include "Machine.h"39 40 #include "nodes.h" 40 #include "Parser.h"41 41 42 42 #if USE(MULTIPLE_THREADS) -
trunk/JavaScriptCore/kjs/JSGlobalData.h
r34977 r35021 30 30 #define JSGlobalData_h 31 31 32 #include " list.h"32 #include "ArgList.h" 33 33 #include <wtf/HashCountedSet.h> 34 34 #include <wtf/HashSet.h> -
trunk/JavaScriptCore/kjs/JSObject.h
r35007 r35021 24 24 #define JSObject_h 25 25 26 #include "ArgList.h" 26 27 #include "ClassInfo.h" 27 28 #include "CommonIdentifiers.h" … … 32 33 #include "PropertySlot.h" 33 34 #include "ScopeChain.h" 34 #include "list.h"35 35 36 36 namespace KJS { -
trunk/JavaScriptCore/kjs/collector.cpp
r34977 r35021 22 22 #include "collector.h" 23 23 24 #include "ArgList.h" 24 25 #include "ExecState.h" 25 26 #include "JSGlobalObject.h" … … 27 28 #include "JSString.h" 28 29 #include "JSValue.h" 29 #include "list.h"30 30 #include "Machine.h" 31 31 #include "Tracing.h"
Note:
See TracChangeset
for help on using the changeset viewer.