Changeset 34582 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jun 15, 2008, 9:17:44 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 29 edited
- 21 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSCallbackFunction.cpp
r34581 r34582 31 31 #include "APICast.h" 32 32 #include "JSFunction.h" 33 #include " function_object.h"33 #include "FunctionPrototype.h" 34 34 #include <kjs/JSGlobalObject.h> 35 35 #include <wtf/Vector.h> -
trunk/JavaScriptCore/API/JSObjectRef.cpp
r34581 r34582 37 37 #include "PropertyNameArray.h" 38 38 #include "JSFunction.h" 39 #include " function_object.h"39 #include "FunctionPrototype.h" 40 40 #include "identifier.h" 41 41 #include "JSString.h" -
trunk/JavaScriptCore/ChangeLog
r34581 r34582 1 2008-06-15 Darin Adler <[email protected]> 2 3 - new names for more JavaScriptCore files 4 5 * API/JSCallbackFunction.cpp: 6 * API/JSObjectRef.cpp: 7 * DerivedSources.make: 8 * GNUmakefile.am: 9 * JavaScriptCore.exp: 10 * JavaScriptCore.pri: 11 * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj: 12 * JavaScriptCore.xcodeproj/project.pbxproj: 13 * JavaScriptCoreSources.bkl: 14 * VM/Machine.cpp: 15 * kjs/AllInOneFile.cpp: 16 * kjs/ArrayPrototype.cpp: Copied from JavaScriptCore/kjs/array_object.cpp. 17 * kjs/ArrayPrototype.h: Copied from JavaScriptCore/kjs/array_object.h. 18 * kjs/BooleanObject.cpp: Copied from JavaScriptCore/kjs/bool_object.cpp. 19 * kjs/BooleanObject.h: Copied from JavaScriptCore/kjs/bool_object.h. 20 * kjs/ExecState.cpp: 21 * kjs/ExecState.h: 22 * kjs/FunctionPrototype.cpp: Copied from JavaScriptCore/kjs/function_object.cpp. 23 * kjs/FunctionPrototype.h: Copied from JavaScriptCore/kjs/function_object.h. 24 * kjs/JSArray.cpp: Copied from JavaScriptCore/kjs/array_instance.cpp. 25 * kjs/JSArray.h: Copied from JavaScriptCore/kjs/array_instance.h. 26 * kjs/JSFunction.cpp: 27 * kjs/JSFunction.h: 28 * kjs/JSGlobalObject.cpp: 29 * kjs/JSImmediate.cpp: 30 * kjs/JSObject.h: 31 * kjs/JSString.h: 32 * kjs/JSValue.h: 33 * kjs/JSVariableObject.cpp: 34 * kjs/MathObject.cpp: Copied from JavaScriptCore/kjs/math_object.cpp. 35 * kjs/MathObject.h: Copied from JavaScriptCore/kjs/math_object.h. 36 * kjs/NumberObject.cpp: Copied from JavaScriptCore/kjs/number_object.cpp. 37 * kjs/NumberObject.h: Copied from JavaScriptCore/kjs/number_object.h. 38 * kjs/PropertyMap.cpp: Copied from JavaScriptCore/kjs/property_map.cpp. 39 * kjs/PropertyMap.h: Copied from JavaScriptCore/kjs/property_map.h. 40 * kjs/PropertySlot.cpp: Copied from JavaScriptCore/kjs/property_slot.cpp. 41 * kjs/PropertySlot.h: Copied from JavaScriptCore/kjs/property_slot.h. 42 * kjs/RegExpObject.cpp: Copied from JavaScriptCore/kjs/regexp_object.cpp. 43 * kjs/RegExpObject.h: Copied from JavaScriptCore/kjs/regexp_object.h. 44 * kjs/ScopeChain.cpp: Copied from JavaScriptCore/kjs/scope_chain.cpp. 45 * kjs/ScopeChain.h: Copied from JavaScriptCore/kjs/scope_chain.h. 46 * kjs/ScopeChainMark.h: Copied from JavaScriptCore/kjs/scope_chain_mark.h. 47 * kjs/Shell.cpp: 48 * kjs/array_instance.cpp: Removed. 49 * kjs/array_instance.h: Removed. 50 * kjs/array_object.cpp: Removed. 51 * kjs/array_object.h: Removed. 52 * kjs/bool_object.cpp: Removed. 53 * kjs/bool_object.h: Removed. 54 * kjs/error_object.h: 55 * kjs/function_object.cpp: Removed. 56 * kjs/function_object.h: Removed. 57 * kjs/internal.cpp: 58 * kjs/math_object.cpp: Removed. 59 * kjs/math_object.h: Removed. 60 * kjs/nodes.cpp: 61 * kjs/number_object.cpp: Removed. 62 * kjs/number_object.h: Removed. 63 * kjs/object_object.cpp: 64 * kjs/property_map.cpp: Removed. 65 * kjs/property_map.h: Removed. 66 * kjs/property_slot.cpp: Removed. 67 * kjs/property_slot.h: Removed. 68 * kjs/regexp_object.cpp: Removed. 69 * kjs/regexp_object.h: Removed. 70 * kjs/scope_chain.cpp: Removed. 71 * kjs/scope_chain.h: Removed. 72 * kjs/scope_chain_mark.h: Removed. 73 * kjs/string_object.cpp: 74 * kjs/string_object.h: 75 1 76 2008-06-15 Darin Adler <[email protected]> 2 77 -
trunk/JavaScriptCore/DerivedSources.make
r34164 r34582 34 34 .PHONY : all 35 35 all : \ 36 array_object.lut.h \36 ArrayPrototype.lut.h \ 37 37 chartables.c \ 38 38 date_object.lut.h \ 39 39 grammar.cpp \ 40 40 lexer.lut.h \ 41 math_object.lut.h \42 number_object.lut.h \43 regexp_object.lut.h \41 MathObject.lut.h \ 42 NumberObject.lut.h \ 43 RegExpObject.lut.h \ 44 44 string_object.lut.h \ 45 45 $(JavaScriptCore)/docs/bytecode.html \ -
trunk/JavaScriptCore/GNUmakefile.am
r34581 r34582 19 19 20 20 javascriptcore_built_nosources += \ 21 JavaScriptCore/kjs/ array_object.lut.h \21 JavaScriptCore/kjs/ArrayPrototype.lut.h \ 22 22 JavaScriptCore/kjs/date_object.lut.h \ 23 JavaScriptCore/kjs/ math_object.lut.h \24 JavaScriptCore/kjs/ number_object.lut.h \25 JavaScriptCore/kjs/ regexp_object.lut.h \23 JavaScriptCore/kjs/MathObject.lut.h \ 24 JavaScriptCore/kjs/NumberObject.lut.h \ 25 JavaScriptCore/kjs/RegExpObject.lut.h \ 26 26 JavaScriptCore/kjs/string_object.lut.h \ 27 27 JavaScriptCore/pcre/chartables.c \ … … 87 87 JavaScriptCore/kjs/Parser.cpp \ 88 88 JavaScriptCore/kjs/PropertyNameArray.cpp \ 89 JavaScriptCore/kjs/ array_instance.cpp \90 JavaScriptCore/kjs/ array_object.cpp \91 JavaScriptCore/kjs/ bool_object.cpp \89 JavaScriptCore/kjs/JSArray.cpp \ 90 JavaScriptCore/kjs/ArrayPrototype.cpp \ 91 JavaScriptCore/kjs/BooleanObject.cpp \ 92 92 JavaScriptCore/kjs/collector.cpp \ 93 93 JavaScriptCore/kjs/date_object.cpp \ … … 96 96 JavaScriptCore/kjs/error_object.cpp \ 97 97 JavaScriptCore/kjs/JSFunction.cpp \ 98 JavaScriptCore/kjs/ function_object.cpp \98 JavaScriptCore/kjs/FunctionPrototype.cpp \ 99 99 JavaScriptCore/kjs/identifier.cpp \ 100 100 JavaScriptCore/kjs/internal.cpp \ … … 103 103 JavaScriptCore/kjs/list.cpp \ 104 104 JavaScriptCore/kjs/lookup.cpp \ 105 JavaScriptCore/kjs/ math_object.cpp \105 JavaScriptCore/kjs/MathObject.cpp \ 106 106 JavaScriptCore/kjs/nodes.cpp \ 107 107 JavaScriptCore/kjs/nodes2string.cpp \ 108 JavaScriptCore/kjs/ number_object.cpp \108 JavaScriptCore/kjs/NumberObject.cpp \ 109 109 JavaScriptCore/kjs/JSObject.cpp \ 110 110 JavaScriptCore/kjs/object_object.cpp \ 111 111 JavaScriptCore/kjs/operations.cpp \ 112 JavaScriptCore/kjs/ property_map.cpp \113 JavaScriptCore/kjs/ property_slot.cpp \112 JavaScriptCore/kjs/PropertyMap.cpp \ 113 JavaScriptCore/kjs/PropertySlot.cpp \ 114 114 JavaScriptCore/kjs/regexp.cpp \ 115 JavaScriptCore/kjs/ regexp_object.cpp \116 JavaScriptCore/kjs/ scope_chain.cpp \115 JavaScriptCore/kjs/RegExpObject.cpp \ 116 JavaScriptCore/kjs/ScopeChain.cpp \ 117 117 JavaScriptCore/kjs/string_object.cpp \ 118 118 JavaScriptCore/kjs/ustring.cpp \ … … 204 204 # Clean rules for JavaScriptCore 205 205 CLEANFILES += \ 206 JavaScriptCore/kjs/ array_object.lut.h \206 JavaScriptCore/kjs/ArrayPrototype.lut.h \ 207 207 JavaScriptCore/kjs/date_object.lut.h \ 208 JavaScriptCore/kjs/ math_object.lut.h \209 JavaScriptCore/kjs/ number_object.lut.h \210 JavaScriptCore/kjs/ regexp_object.lut.h \208 JavaScriptCore/kjs/MathObject.lut.h \ 209 JavaScriptCore/kjs/NumberObject.lut.h \ 210 JavaScriptCore/kjs/RegExpObject.lut.h \ 211 211 JavaScriptCore/kjs/string_object.lut.h \ 212 212 JavaScriptCore/pcre/chartables.c \ -
trunk/JavaScriptCore/JavaScriptCore.exp
r34580 r34582 226 226 __ZN3WTF16callOnMainThreadEPFvPvES0_ 227 227 __ZN3WTF16fastZeroedMallocEm 228 __ZN3WTF19initializeThreadingEv 228 229 __ZN3WTF23waitForThreadCompletionEjPPv 229 230 __ZN3WTF28setMainThreadCallbacksPausedEb -
trunk/JavaScriptCore/JavaScriptCore.pri
r34581 r34582 16 16 LUT_FILES += \ 17 17 kjs/date_object.cpp \ 18 kjs/ number_object.cpp \18 kjs/NumberObject.cpp \ 19 19 kjs/string_object.cpp \ 20 kjs/ array_object.cpp \21 kjs/ math_object.cpp \22 kjs/ regexp_object.cpp20 kjs/ArrayPrototype.cpp \ 21 kjs/MathObject.cpp \ 22 kjs/RegExpObject.cpp 23 23 24 24 KEYWORDLUT_FILES += \ … … 68 68 kjs/JSFunction.cpp \ 69 69 kjs/debugger.cpp \ 70 kjs/ array_instance.cpp \71 kjs/ array_object.cpp \72 kjs/ bool_object.cpp \70 kjs/JSArray.cpp \ 71 kjs/ArrayPrototype.cpp \ 72 kjs/BooleanObject.cpp \ 73 73 kjs/collector.cpp \ 74 74 kjs/CommonIdentifiers.cpp \ … … 79 79 kjs/error_object.cpp \ 80 80 kjs/ExecState.cpp \ 81 kjs/ function_object.cpp \81 kjs/FunctionPrototype.cpp \ 82 82 kjs/identifier.cpp \ 83 83 kjs/internal.cpp \ … … 89 89 kjs/list.cpp \ 90 90 kjs/lookup.cpp \ 91 kjs/ math_object.cpp \91 kjs/MathObject.cpp \ 92 92 kjs/nodes.cpp \ 93 93 kjs/nodes2string.cpp \ 94 kjs/ number_object.cpp \94 kjs/NumberObject.cpp \ 95 95 kjs/JSObject.cpp \ 96 96 kjs/object_object.cpp \ 97 97 kjs/operations.cpp \ 98 98 kjs/Parser.cpp \ 99 kjs/ property_map.cpp \100 kjs/ property_slot.cpp \99 kjs/PropertyMap.cpp \ 100 kjs/PropertySlot.cpp \ 101 101 kjs/PropertyNameArray.cpp \ 102 102 kjs/regexp.cpp \ 103 kjs/ regexp_object.cpp \104 kjs/ scope_chain.cpp \103 kjs/RegExpObject.cpp \ 104 kjs/ScopeChain.cpp \ 105 105 kjs/string_object.cpp \ 106 106 kjs/ustring.cpp \ -
trunk/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj
r34581 r34582 274 274 </File> 275 275 <File 276 RelativePath="..\..\kjs\ array_instance.cpp"277 > 278 </File> 279 <File 280 RelativePath="..\..\kjs\ array_instance.h"281 > 282 </File> 283 <File 284 RelativePath="..\..\kjs\ array_object.cpp"285 > 286 </File> 287 <File 288 RelativePath="..\..\kjs\ array_object.h"289 > 290 </File> 291 <File 292 RelativePath="..\..\kjs\ bool_object.cpp"293 > 294 </File> 295 <File 296 RelativePath="..\..\kjs\ bool_object.h"276 RelativePath="..\..\kjs\JSArray.cpp" 277 > 278 </File> 279 <File 280 RelativePath="..\..\kjs\JSArray.h" 281 > 282 </File> 283 <File 284 RelativePath="..\..\kjs\ArrayPrototype.cpp" 285 > 286 </File> 287 <File 288 RelativePath="..\..\kjs\ArrayPrototype.h" 289 > 290 </File> 291 <File 292 RelativePath="..\..\kjs\BooleanObject.cpp" 293 > 294 </File> 295 <File 296 RelativePath="..\..\kjs\BooleanObject.h" 297 297 > 298 298 </File> … … 374 374 </File> 375 375 <File 376 RelativePath="..\..\kjs\ function_object.cpp"377 > 378 </File> 379 <File 380 RelativePath="..\..\kjs\ function_object.h"376 RelativePath="..\..\kjs\FunctionPrototype.cpp" 377 > 378 </File> 379 <File 380 RelativePath="..\..\kjs\FunctionPrototype.h" 381 381 > 382 382 </File> … … 506 506 </File> 507 507 <File 508 RelativePath="..\..\kjs\ math_object.cpp"509 > 510 </File> 511 <File 512 RelativePath="..\..\kjs\ math_object.h"508 RelativePath="..\..\kjs\MathObject.cpp" 509 > 510 </File> 511 <File 512 RelativePath="..\..\kjs\MathObject.h" 513 513 > 514 514 </File> … … 518 518 </File> 519 519 <File 520 RelativePath="..\..\kjs\ number_object.cpp"521 > 522 </File> 523 <File 524 RelativePath="..\..\kjs\ number_object.h"520 RelativePath="..\..\kjs\NumberObject.cpp" 521 > 522 </File> 523 <File 524 RelativePath="..\..\kjs\NumberObject.h" 525 525 > 526 526 </File> … … 550 550 </File> 551 551 <File 552 RelativePath="..\..\kjs\ property_map.cpp"553 > 554 </File> 555 <File 556 RelativePath="..\..\kjs\ property_map.h"557 > 558 </File> 559 <File 560 RelativePath="..\..\kjs\ property_slot.cpp"561 > 562 </File> 563 <File 564 RelativePath="..\..\kjs\ property_slot.h"552 RelativePath="..\..\kjs\PropertyMap.cpp" 553 > 554 </File> 555 <File 556 RelativePath="..\..\kjs\PropertyMap.h" 557 > 558 </File> 559 <File 560 RelativePath="..\..\kjs\PropertySlot.cpp" 561 > 562 </File> 563 <File 564 RelativePath="..\..\kjs\PropertySlot.h" 565 565 > 566 566 </File> … … 586 586 </File> 587 587 <File 588 RelativePath="..\..\kjs\ regexp_object.cpp"589 > 590 </File> 591 <File 592 RelativePath="..\..\kjs\ regexp_object.h"593 > 594 </File> 595 <File 596 RelativePath="..\..\kjs\ scope_chain.cpp"597 > 598 </File> 599 <File 600 RelativePath="..\..\kjs\ scope_chain.h"601 > 602 </File> 603 <File 604 RelativePath="..\..\kjs\ scope_chain_mark.h"588 RelativePath="..\..\kjs\RegExpObject.cpp" 589 > 590 </File> 591 <File 592 RelativePath="..\..\kjs\RegExpObject.h" 593 > 594 </File> 595 <File 596 RelativePath="..\..\kjs\ScopeChain.cpp" 597 > 598 </File> 599 <File 600 RelativePath="..\..\kjs\ScopeChain.h" 601 > 602 </File> 603 <File 604 RelativePath="..\..\kjs\ScopeChainMark.h" 605 605 > 606 606 </File> … … 653 653 > 654 654 <File 655 RelativePath="$(WebKitOutputDir)\obj\$(ProjectName)\DerivedSources\ array_object.lut.h"655 RelativePath="$(WebKitOutputDir)\obj\$(ProjectName)\DerivedSources\ArrayPrototype.lut.h" 656 656 > 657 657 </File> … … 706 706 </File> 707 707 <File 708 RelativePath="$(WebKitOutputDir)\obj\$(ProjectName)\DerivedSources\ math_object.lut.h"708 RelativePath="$(WebKitOutputDir)\obj\$(ProjectName)\DerivedSources\MathObject.lut.h" 709 709 > 710 710 </File> 711 711 <File 712 RelativePath="$(WebKitOutputDir)\obj\$(ProjectName)\DerivedSources\ number_object.lut.h"712 RelativePath="$(WebKitOutputDir)\obj\$(ProjectName)\DerivedSources\NumberObject.lut.h" 713 713 > 714 714 </File> 715 715 <File 716 RelativePath="$(WebKitOutputDir)\obj\$(ProjectName)\DerivedSources\ regexp_object.lut.h"716 RelativePath="$(WebKitOutputDir)\obj\$(ProjectName)\DerivedSources\RegExpObject.lut.h" 717 717 > 718 718 </File> -
trunk/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj
r34581 r34582 120 120 6541BD7308E80A17002CBEE7 /* TCSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 6541BD6F08E80A17002CBEE7 /* TCSpinLock.h */; }; 121 121 6541BD7508E80A17002CBEE7 /* TCSystemAlloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 6541BD7108E80A17002CBEE7 /* TCSystemAlloc.h */; }; 122 65621E6E089E859700760F35 /* property_slot.h in Headers */ = {isa = PBXBuildFile; fileRef = 65621E6C089E859700760F35 /* property_slot.h */; settings = {ATTRIBUTES = (Private, ); }; };122 65621E6E089E859700760F35 /* PropertySlot.h in Headers */ = {isa = PBXBuildFile; fileRef = 65621E6C089E859700760F35 /* PropertySlot.h */; settings = {ATTRIBUTES = (Private, ); }; }; 123 123 657EB7460B708F540063461B /* ListHashSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 657EB7450B708F540063461B /* ListHashSet.h */; settings = {ATTRIBUTES = (Private, ); }; }; 124 124 657EEBC0094E445E008C9C7B /* HashCountedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 657EEBBF094E445E008C9C7B /* HashCountedSet.h */; settings = {ATTRIBUTES = (Private, ); }; }; … … 128 128 6592C319098B7DE10003D4F6 /* VectorTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 6592C317098B7DE10003D4F6 /* VectorTraits.h */; settings = {ATTRIBUTES = (Private, ); }; }; 129 129 65A7A5E00CD1D50E00061F8E /* LabelStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 65B813A80CD1D01900DF59D6 /* LabelStack.h */; settings = {ATTRIBUTES = (Private, ); }; }; 130 65B1749A09D0FEB700820339 /* array_object.lut.h in Headers */ = {isa = PBXBuildFile; fileRef = 65B1749909D0FEB700820339 /* array_object.lut.h */; };131 65B174F509D100FA00820339 /* math_object.lut.h in Headers */ = {isa = PBXBuildFile; fileRef = 65B174F109D100FA00820339 /* math_object.lut.h */; };132 65B174F609D100FA00820339 /* number_object.lut.h in Headers */ = {isa = PBXBuildFile; fileRef = 65B174F209D100FA00820339 /* number_object.lut.h */; };130 65B1749A09D0FEB700820339 /* ArrayPrototype.lut.h in Headers */ = {isa = PBXBuildFile; fileRef = 65B1749909D0FEB700820339 /* ArrayPrototype.lut.h */; }; 131 65B174F509D100FA00820339 /* MathObject.lut.h in Headers */ = {isa = PBXBuildFile; fileRef = 65B174F109D100FA00820339 /* MathObject.lut.h */; }; 132 65B174F609D100FA00820339 /* NumberObject.lut.h in Headers */ = {isa = PBXBuildFile; fileRef = 65B174F209D100FA00820339 /* NumberObject.lut.h */; }; 133 133 65B174F809D100FA00820339 /* string_object.lut.h in Headers */ = {isa = PBXBuildFile; fileRef = 65B174F409D100FA00820339 /* string_object.lut.h */; }; 134 134 65C647B4093EF8D60022C380 /* RefPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 65C647B3093EF8D60022C380 /* RefPtr.h */; settings = {ATTRIBUTES = (Private, ); }; }; … … 151 151 65FB3F4F09D11B2400F49DEB /* date_object.lut.h in Headers */ = {isa = PBXBuildFile; fileRef = 65FB3F4709D11B2400F49DEB /* date_object.lut.h */; }; 152 152 65FB3F5109D11B2400F49DEB /* grammar.h in Headers */ = {isa = PBXBuildFile; fileRef = 65FB3F4909D11B2400F49DEB /* grammar.h */; }; 153 65FB3F5409D11B2400F49DEB /* regexp_object.lut.h in Headers */ = {isa = PBXBuildFile; fileRef = 65FB3F4C09D11B2400F49DEB /* regexp_object.lut.h */; };153 65FB3F5409D11B2400F49DEB /* RegExpObject.lut.h in Headers */ = {isa = PBXBuildFile; fileRef = 65FB3F4C09D11B2400F49DEB /* RegExpObject.lut.h */; }; 154 154 65FDE49C0BDD1D4A00E80111 /* Assertions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65E217B808E7EECC0023E5F6 /* Assertions.cpp */; }; 155 155 9303F568099118FA00AD71B8 /* OwnPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 9303F567099118FA00AD71B8 /* OwnPtr.h */; settings = {ATTRIBUTES = (Private, ); }; }; … … 159 159 930754D008B0F74600AB3056 /* pcre_tables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 930754CE08B0F74500AB3056 /* pcre_tables.cpp */; }; 160 160 930754EB08B0F78500AB3056 /* pcre_exec.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 930754E908B0F78500AB3056 /* pcre_exec.cpp */; settings = {COMPILER_FLAGS = "-fno-move-loop-invariants"; }; }; 161 932F5B400822A1C700736975 /* array_object.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A84E0255597D01FF60F7 /* array_object.h */; settings = {ATTRIBUTES = (Private, ); }; };161 932F5B400822A1C700736975 /* ArrayPrototype.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A84E0255597D01FF60F7 /* ArrayPrototype.h */; settings = {ATTRIBUTES = (Private, ); }; }; 162 162 932F5B420822A1C700736975 /* collector.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A8530255597D01FF60F7 /* collector.h */; settings = {ATTRIBUTES = (Private, ); }; }; 163 163 932F5B430822A1C700736975 /* date_object.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A8560255597D01FF60F7 /* date_object.h */; settings = {ATTRIBUTES = (Private, ); }; }; 164 164 932F5B450822A1C700736975 /* debugger.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A8590255597D01FF60F7 /* debugger.h */; settings = {ATTRIBUTES = (Private, ); }; }; 165 165 932F5B460822A1C700736975 /* error_object.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A85B0255597D01FF60F7 /* error_object.h */; settings = {ATTRIBUTES = (Private, ); }; }; 166 932F5B470822A1C700736975 /* function_object.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A85D0255597D01FF60F7 /* function_object.h */; settings = {ATTRIBUTES = (Private, ); }; };166 932F5B470822A1C700736975 /* FunctionPrototype.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A85D0255597D01FF60F7 /* FunctionPrototype.h */; settings = {ATTRIBUTES = (Private, ); }; }; 167 167 932F5B480822A1C700736975 /* JSFunction.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A85F0255597D01FF60F7 /* JSFunction.h */; settings = {ATTRIBUTES = (Private, ); }; }; 168 168 932F5B490822A1C700736975 /* JSString.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A8620255597D01FF60F7 /* JSString.h */; settings = {ATTRIBUTES = (Private, ); }; }; … … 170 170 932F5B4B0822A1C700736975 /* lexer.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A8660255597D01FF60F7 /* lexer.h */; }; 171 171 932F5B4D0822A1C700736975 /* lookup.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A8690255597D01FF60F7 /* lookup.h */; settings = {ATTRIBUTES = (Private, ); }; }; 172 932F5B4E0822A1C700736975 /* math_object.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A86B0255597D01FF60F7 /* math_object.h */; settings = {ATTRIBUTES = (Private, ); }; };172 932F5B4E0822A1C700736975 /* MathObject.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A86B0255597D01FF60F7 /* MathObject.h */; settings = {ATTRIBUTES = (Private, ); }; }; 173 173 932F5B500822A1C700736975 /* nodes.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A86E0255597D01FF60F7 /* nodes.h */; settings = {ATTRIBUTES = (Private, ); }; }; 174 932F5B510822A1C700736975 /* number_object.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A8710255597D01FF60F7 /* number_object.h */; settings = {ATTRIBUTES = (Private, ); }; };174 932F5B510822A1C700736975 /* NumberObject.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A8710255597D01FF60F7 /* NumberObject.h */; settings = {ATTRIBUTES = (Private, ); }; }; 175 175 932F5B530822A1C700736975 /* object_object.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A8740255597D01FF60F7 /* object_object.h */; settings = {ATTRIBUTES = (Private, ); }; }; 176 176 932F5B540822A1C700736975 /* JSObject.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A8760255597D01FF60F7 /* JSObject.h */; settings = {ATTRIBUTES = (Private, ); }; }; 177 177 932F5B550822A1C700736975 /* operations.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A8780255597D01FF60F7 /* operations.h */; settings = {ATTRIBUTES = (Private, ); }; }; 178 932F5B560822A1C700736975 /* property_map.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A87A0255597D01FF60F7 /* property_map.h */; settings = {ATTRIBUTES = (Private, ); }; };179 932F5B570822A1C700736975 /* regexp_object.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A87C0255597D01FF60F7 /* regexp_object.h */; settings = {ATTRIBUTES = (Private, ); }; };178 932F5B560822A1C700736975 /* PropertyMap.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A87A0255597D01FF60F7 /* PropertyMap.h */; settings = {ATTRIBUTES = (Private, ); }; }; 179 932F5B570822A1C700736975 /* RegExpObject.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A87C0255597D01FF60F7 /* RegExpObject.h */; settings = {ATTRIBUTES = (Private, ); }; }; 180 180 932F5B580822A1C700736975 /* regexp.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A87E0255597D01FF60F7 /* regexp.h */; settings = {ATTRIBUTES = (Private, ); }; }; 181 181 932F5B590822A1C700736975 /* string_object.h in Headers */ = {isa = PBXBuildFile; fileRef = F692A8800255597D01FF60F7 /* string_object.h */; settings = {ATTRIBUTES = (Private, ); }; }; … … 186 186 932F5B650822A1C700736975 /* completion.h in Headers */ = {isa = PBXBuildFile; fileRef = F5BB2BC5030F772101FCFE1D /* completion.h */; settings = {ATTRIBUTES = (Private, ); }; }; 187 187 932F5B660822A1C700736975 /* identifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 933A349A038AE7C6008635CE /* identifier.h */; settings = {ATTRIBUTES = (Private, ); }; }; 188 932F5B670822A1C700736975 /* array_instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 938772E5038BFE19008635CE /* array_instance.h */; settings = {ATTRIBUTES = (Private, ); }; };189 932F5B680822A1C700736975 /* scope_chain.h in Headers */ = {isa = PBXBuildFile; fileRef = 9374D3A7038D9D74008635CE /* scope_chain.h */; settings = {ATTRIBUTES = (Private, ); }; };188 932F5B670822A1C700736975 /* JSArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 938772E5038BFE19008635CE /* JSArray.h */; settings = {ATTRIBUTES = (Private, ); }; }; 189 932F5B680822A1C700736975 /* ScopeChain.h in Headers */ = {isa = PBXBuildFile; fileRef = 9374D3A7038D9D74008635CE /* ScopeChain.h */; settings = {ATTRIBUTES = (Private, ); }; }; 190 190 932F5B6A0822A1C700736975 /* list.h in Headers */ = {isa = PBXBuildFile; fileRef = 931C6CEF038EE8DE008635CE /* list.h */; settings = {ATTRIBUTES = (Private, ); }; }; 191 191 932F5B6B0822A1C700736975 /* dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 651F6413039D5B5F0078395C /* dtoa.h */; settings = {ATTRIBUTES = (Private, ); }; }; 192 192 932F5B6C0822A1C700736975 /* pcre.h in Headers */ = {isa = PBXBuildFile; fileRef = 6541720F039E08B90058BFEB /* pcre.h */; settings = {ATTRIBUTES = (Private, ); }; }; 193 932F5B720822A1C700736975 /* bool_object.h in Headers */ = {isa = PBXBuildFile; fileRef = 704FD35305697E6D003DBED9 /* bool_object.h */; settings = {ATTRIBUTES = (Private, ); }; };193 932F5B720822A1C700736975 /* BooleanObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 704FD35305697E6D003DBED9 /* BooleanObject.h */; settings = {ATTRIBUTES = (Private, ); }; }; 194 194 932F5B880822A1C700736975 /* protect.h in Headers */ = {isa = PBXBuildFile; fileRef = 65C02FBB0637462A003E7EE6 /* protect.h */; settings = {ATTRIBUTES = (Private, ); }; }; 195 195 932F5BD30822A1C700736975 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6560A4CF04B3B3E7008AE952 /* CoreFoundation.framework */; }; … … 484 484 6560A4CF04B3B3E7008AE952 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; }; 485 485 6560A63D04B3B69F008AE952 /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = /System/Library/Frameworks/CoreServices.framework; sourceTree = "<absolute>"; }; 486 65621E6B089E859700760F35 /* property_slot.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = property_slot.cpp; sourceTree = "<group>"; tabWidth = 8; };487 65621E6C089E859700760F35 /* property_slot.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = property_slot.h; sourceTree = "<group>"; tabWidth = 8; };486 65621E6B089E859700760F35 /* PropertySlot.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PropertySlot.cpp; sourceTree = "<group>"; tabWidth = 8; }; 487 65621E6C089E859700760F35 /* PropertySlot.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = PropertySlot.h; sourceTree = "<group>"; tabWidth = 8; }; 488 488 657EB7450B708F540063461B /* ListHashSet.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ListHashSet.h; sourceTree = "<group>"; }; 489 489 657EEBBF094E445E008C9C7B /* HashCountedSet.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = HashCountedSet.h; sourceTree = "<group>"; tabWidth = 8; }; … … 492 492 6592C316098B7DE10003D4F6 /* Vector.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = Vector.h; sourceTree = "<group>"; }; 493 493 6592C317098B7DE10003D4F6 /* VectorTraits.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = VectorTraits.h; sourceTree = "<group>"; }; 494 65B1749909D0FEB700820339 /* array_object.lut.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = array_object.lut.h; path = ../../../../../symroots/Debug/DerivedSources/JavaScriptCore/array_object.lut.h; sourceTree = "<group>"; };494 65B1749909D0FEB700820339 /* ArrayPrototype.lut.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = ArrayPrototype.lut.h; path = ../../../../../symroots/Debug/DerivedSources/JavaScriptCore/ArrayPrototype.lut.h; sourceTree = "<group>"; }; 495 495 65B174BE09D1000200820339 /* chartables.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.c; fileEncoding = 30; path = chartables.c; sourceTree = "<group>"; }; 496 65B174F109D100FA00820339 /* math_object.lut.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = math_object.lut.h; path = ../../../../../symroots/Debug/DerivedSources/JavaScriptCore/math_object.lut.h; sourceTree = "<group>"; };497 65B174F209D100FA00820339 /* number_object.lut.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = number_object.lut.h; path = ../../../../../symroots/Debug/DerivedSources/JavaScriptCore/number_object.lut.h; sourceTree = "<group>"; };496 65B174F109D100FA00820339 /* MathObject.lut.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = MathObject.lut.h; path = ../../../../../symroots/Debug/DerivedSources/JavaScriptCore/MathObject.lut.h; sourceTree = "<group>"; }; 497 65B174F209D100FA00820339 /* NumberObject.lut.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = NumberObject.lut.h; path = ../../../../../symroots/Debug/DerivedSources/JavaScriptCore/NumberObject.lut.h; sourceTree = "<group>"; }; 498 498 65B174F409D100FA00820339 /* string_object.lut.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = string_object.lut.h; path = ../../../../../symroots/Debug/DerivedSources/JavaScriptCore/string_object.lut.h; sourceTree = "<group>"; }; 499 499 65B813A80CD1D01900DF59D6 /* LabelStack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LabelStack.h; sourceTree = "<group>"; }; … … 524 524 65FB3F4809D11B2400F49DEB /* grammar.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = grammar.cpp; sourceTree = "<group>"; }; 525 525 65FB3F4909D11B2400F49DEB /* grammar.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = grammar.h; path = ../../../../../symroots/Debug/DerivedSources/JavaScriptCore/grammar.h; sourceTree = "<group>"; }; 526 65FB3F4C09D11B2400F49DEB /* regexp_object.lut.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = regexp_object.lut.h; path = ../../../../../symroots/Debug/DerivedSources/JavaScriptCore/regexp_object.lut.h; sourceTree = "<group>"; };527 704FD35305697E6D003DBED9 /* bool_object.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = bool_object.h; sourceTree = "<group>"; tabWidth = 8; };528 7E2C6C980D31C6B6002D44E2 /* scope_chain_mark.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = scope_chain_mark.h; sourceTree = "<group>"; };526 65FB3F4C09D11B2400F49DEB /* RegExpObject.lut.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = RegExpObject.lut.h; path = ../../../../../symroots/Debug/DerivedSources/JavaScriptCore/RegExpObject.lut.h; sourceTree = "<group>"; }; 527 704FD35305697E6D003DBED9 /* BooleanObject.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = BooleanObject.h; sourceTree = "<group>"; tabWidth = 8; }; 528 7E2C6C980D31C6B6002D44E2 /* ScopeChainMark.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScopeChainMark.h; sourceTree = "<group>"; }; 529 529 9303F567099118FA00AD71B8 /* OwnPtr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OwnPtr.h; sourceTree = "<group>"; }; 530 530 9303F5690991190000AD71B8 /* Noncopyable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Noncopyable.h; sourceTree = "<group>"; }; … … 545 545 935AF46B09E9D9DB00ACD1D8 /* UnusedParam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UnusedParam.h; sourceTree = "<group>"; }; 546 546 937013470CA97E0E00FA14D3 /* pcre_ucp_searchfuncs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = pcre_ucp_searchfuncs.cpp; path = pcre/pcre_ucp_searchfuncs.cpp; sourceTree = "<group>"; }; 547 9374D3A7038D9D74008635CE /* scope_chain.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = scope_chain.h; sourceTree = "<group>"; tabWidth = 8; };548 9374D3A8038D9D74008635CE /* scope_chain.cpp */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = scope_chain.cpp; sourceTree = "<group>"; tabWidth = 8; };547 9374D3A7038D9D74008635CE /* ScopeChain.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = ScopeChain.h; sourceTree = "<group>"; tabWidth = 8; }; 548 9374D3A8038D9D74008635CE /* ScopeChain.cpp */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ScopeChain.cpp; sourceTree = "<group>"; tabWidth = 8; }; 549 549 937B63CC09E766D200A671DD /* DerivedSources.make */ = {isa = PBXFileReference; explicitFileType = sourcecode.make; fileEncoding = 4; path = DerivedSources.make; sourceTree = "<group>"; usesTabs = 1; }; 550 938772E5038BFE19008635CE /* array_instance.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = array_instance.h; sourceTree = "<group>"; tabWidth = 8; };550 938772E5038BFE19008635CE /* JSArray.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = JSArray.h; sourceTree = "<group>"; tabWidth = 8; }; 551 551 938C4F690CA06BC700D9310A /* ASCIICType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ASCIICType.h; sourceTree = "<group>"; }; 552 552 938C4F6B0CA06BCE00D9310A /* DisallowCType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DisallowCType.h; sourceTree = "<group>"; }; 553 553 93AA4F770957251F0084B3A7 /* AlwaysInline.h */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = AlwaysInline.h; sourceTree = "<group>"; tabWidth = 8; }; 554 93ADFCE60CCBD7AC00D30B08 /* array_instance.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = array_instance.cpp; sourceTree = "<group>"; };554 93ADFCE60CCBD7AC00D30B08 /* JSArray.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSArray.cpp; sourceTree = "<group>"; }; 555 555 93B6A0DE0AA64DA40076DE27 /* GetPtr.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = GetPtr.h; sourceTree = "<group>"; }; 556 556 93E26BD308B1514100F85226 /* pcre_xclass.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; name = pcre_xclass.cpp; path = pcre/pcre_xclass.cpp; sourceTree = "<group>"; tabWidth = 8; }; … … 603 603 F5FFE656026B47A6018635CA /* nodes2string.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; name = nodes2string.cpp; path = kjs/nodes2string.cpp; sourceTree = "<group>"; tabWidth = 8; }; 604 604 F68EBB8C0255D4C601FF60F7 /* config.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = "<group>"; tabWidth = 8; }; 605 F692A84D0255597D01FF60F7 /* array_object.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = array_object.cpp; sourceTree = "<group>"; tabWidth = 8; };606 F692A84E0255597D01FF60F7 /* array_object.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = array_object.h; sourceTree = "<group>"; tabWidth = 8; };607 F692A8500255597D01FF60F7 /* bool_object.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = bool_object.cpp; sourceTree = "<group>"; tabWidth = 8; };605 F692A84D0255597D01FF60F7 /* ArrayPrototype.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ArrayPrototype.cpp; sourceTree = "<group>"; tabWidth = 8; }; 606 F692A84E0255597D01FF60F7 /* ArrayPrototype.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = ArrayPrototype.h; sourceTree = "<group>"; tabWidth = 8; }; 607 F692A8500255597D01FF60F7 /* BooleanObject.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BooleanObject.cpp; sourceTree = "<group>"; tabWidth = 8; }; 608 608 F692A8520255597D01FF60F7 /* collector.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = collector.cpp; sourceTree = "<group>"; tabWidth = 8; }; 609 609 F692A8530255597D01FF60F7 /* collector.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = collector.h; sourceTree = "<group>"; tabWidth = 8; }; … … 615 615 F692A85A0255597D01FF60F7 /* error_object.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = error_object.cpp; sourceTree = "<group>"; tabWidth = 8; }; 616 616 F692A85B0255597D01FF60F7 /* error_object.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = error_object.h; sourceTree = "<group>"; tabWidth = 8; }; 617 F692A85C0255597D01FF60F7 /* function_object.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = function_object.cpp; sourceTree = "<group>"; tabWidth = 8; };618 F692A85D0255597D01FF60F7 /* function_object.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = function_object.h; sourceTree = "<group>"; tabWidth = 8; };617 F692A85C0255597D01FF60F7 /* FunctionPrototype.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FunctionPrototype.cpp; sourceTree = "<group>"; tabWidth = 8; }; 618 F692A85D0255597D01FF60F7 /* FunctionPrototype.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = FunctionPrototype.h; sourceTree = "<group>"; tabWidth = 8; }; 619 619 F692A85E0255597D01FF60F7 /* JSFunction.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSFunction.cpp; sourceTree = "<group>"; tabWidth = 8; }; 620 620 F692A85F0255597D01FF60F7 /* JSFunction.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = JSFunction.h; sourceTree = "<group>"; tabWidth = 8; }; … … 627 627 F692A8680255597D01FF60F7 /* lookup.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lookup.cpp; sourceTree = "<group>"; tabWidth = 8; }; 628 628 F692A8690255597D01FF60F7 /* lookup.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = lookup.h; sourceTree = "<group>"; tabWidth = 8; }; 629 F692A86A0255597D01FF60F7 /* math_object.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = math_object.cpp; sourceTree = "<group>"; tabWidth = 8; };630 F692A86B0255597D01FF60F7 /* math_object.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = math_object.h; sourceTree = "<group>"; tabWidth = 8; };629 F692A86A0255597D01FF60F7 /* MathObject.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MathObject.cpp; sourceTree = "<group>"; tabWidth = 8; }; 630 F692A86B0255597D01FF60F7 /* MathObject.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = MathObject.h; sourceTree = "<group>"; tabWidth = 8; }; 631 631 F692A86D0255597D01FF60F7 /* nodes.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; name = nodes.cpp; path = kjs/nodes.cpp; sourceTree = "<group>"; tabWidth = 8; }; 632 632 F692A86E0255597D01FF60F7 /* nodes.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; name = nodes.h; path = kjs/nodes.h; sourceTree = "<group>"; tabWidth = 8; }; 633 F692A8700255597D01FF60F7 /* number_object.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = number_object.cpp; sourceTree = "<group>"; tabWidth = 8; };634 F692A8710255597D01FF60F7 /* number_object.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = number_object.h; sourceTree = "<group>"; tabWidth = 8; };633 F692A8700255597D01FF60F7 /* NumberObject.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = NumberObject.cpp; sourceTree = "<group>"; tabWidth = 8; }; 634 F692A8710255597D01FF60F7 /* NumberObject.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = NumberObject.h; sourceTree = "<group>"; tabWidth = 8; }; 635 635 F692A8730255597D01FF60F7 /* object_object.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = object_object.cpp; sourceTree = "<group>"; tabWidth = 8; }; 636 636 F692A8740255597D01FF60F7 /* object_object.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = object_object.h; sourceTree = "<group>"; tabWidth = 8; }; … … 639 639 F692A8770255597D01FF60F7 /* operations.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = operations.cpp; sourceTree = "<group>"; tabWidth = 8; }; 640 640 F692A8780255597D01FF60F7 /* operations.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = operations.h; sourceTree = "<group>"; tabWidth = 8; }; 641 F692A8790255597D01FF60F7 /* property_map.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = property_map.cpp; sourceTree = "<group>"; tabWidth = 8; };642 F692A87A0255597D01FF60F7 /* property_map.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = property_map.h; sourceTree = "<group>"; tabWidth = 8; };643 F692A87B0255597D01FF60F7 /* regexp_object.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = regexp_object.cpp; sourceTree = "<group>"; tabWidth = 8; };644 F692A87C0255597D01FF60F7 /* regexp_object.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = regexp_object.h; sourceTree = "<group>"; tabWidth = 8; };641 F692A8790255597D01FF60F7 /* PropertyMap.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PropertyMap.cpp; sourceTree = "<group>"; tabWidth = 8; }; 642 F692A87A0255597D01FF60F7 /* PropertyMap.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = PropertyMap.h; sourceTree = "<group>"; tabWidth = 8; }; 643 F692A87B0255597D01FF60F7 /* RegExpObject.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = RegExpObject.cpp; sourceTree = "<group>"; tabWidth = 8; }; 644 F692A87C0255597D01FF60F7 /* RegExpObject.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = RegExpObject.h; sourceTree = "<group>"; tabWidth = 8; }; 645 645 F692A87D0255597D01FF60F7 /* regexp.cpp */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.cpp.cpp; path = regexp.cpp; sourceTree = "<group>"; tabWidth = 8; }; 646 646 F692A87E0255597D01FF60F7 /* regexp.h */ = {isa = PBXFileReference; fileEncoding = 30; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = regexp.h; sourceTree = "<group>"; tabWidth = 8; }; … … 895 895 isa = PBXGroup; 896 896 children = ( 897 65B1749909D0FEB700820339 /* array_object.lut.h */,897 65B1749909D0FEB700820339 /* ArrayPrototype.lut.h */, 898 898 65B174BE09D1000200820339 /* chartables.c */, 899 899 65FB3F4709D11B2400F49DEB /* date_object.lut.h */, … … 901 901 65FB3F4909D11B2400F49DEB /* grammar.h */, 902 902 65FB3EB209D109F000F49DEB /* lexer.lut.h */, 903 65B174F109D100FA00820339 /* math_object.lut.h */,904 65B174F209D100FA00820339 /* number_object.lut.h */,905 65FB3F4C09D11B2400F49DEB /* regexp_object.lut.h */,903 65B174F109D100FA00820339 /* MathObject.lut.h */, 904 65B174F209D100FA00820339 /* NumberObject.lut.h */, 905 65FB3F4C09D11B2400F49DEB /* RegExpObject.lut.h */, 906 906 65B174F409D100FA00820339 /* string_object.lut.h */, 907 907 ); … … 977 977 65E866EE0DD59AFA00A2B2A1 /* SourceRange.h */, 978 978 659126BC0BDD1728001921FB /* AllInOneFile.cpp */, 979 93ADFCE60CCBD7AC00D30B08 /* array_instance.cpp */,980 938772E5038BFE19008635CE /* array_instance.h */,981 F692A84D0255597D01FF60F7 /* array_object.cpp */,982 F692A84E0255597D01FF60F7 /* array_object.h */,983 F692A8500255597D01FF60F7 /* bool_object.cpp */,984 704FD35305697E6D003DBED9 /* bool_object.h */,979 93ADFCE60CCBD7AC00D30B08 /* JSArray.cpp */, 980 938772E5038BFE19008635CE /* JSArray.h */, 981 F692A84D0255597D01FF60F7 /* ArrayPrototype.cpp */, 982 F692A84E0255597D01FF60F7 /* ArrayPrototype.h */, 983 F692A8500255597D01FF60F7 /* BooleanObject.cpp */, 984 704FD35305697E6D003DBED9 /* BooleanObject.h */, 985 985 145C507F0D9DF63B0088F6B9 /* CallData.h */, 986 986 F692A8520255597D01FF60F7 /* collector.cpp */, … … 1006 1006 F692A85E0255597D01FF60F7 /* JSFunction.cpp */, 1007 1007 F692A85F0255597D01FF60F7 /* JSFunction.h */, 1008 F692A85C0255597D01FF60F7 /* function_object.cpp */,1009 F692A85D0255597D01FF60F7 /* function_object.h */,1008 F692A85C0255597D01FF60F7 /* FunctionPrototype.cpp */, 1009 F692A85D0255597D01FF60F7 /* FunctionPrototype.h */, 1010 1010 933A3499038AE7C6008635CE /* grammar.y */, 1011 1011 933A349D038AE80F008635CE /* identifier.cpp */, … … 1040 1040 F692A8680255597D01FF60F7 /* lookup.cpp */, 1041 1041 F692A8690255597D01FF60F7 /* lookup.h */, 1042 F692A86A0255597D01FF60F7 /* math_object.cpp */,1043 F692A86B0255597D01FF60F7 /* math_object.h */,1044 F692A8700255597D01FF60F7 /* number_object.cpp */,1045 F692A8710255597D01FF60F7 /* number_object.h */,1042 F692A86A0255597D01FF60F7 /* MathObject.cpp */, 1043 F692A86B0255597D01FF60F7 /* MathObject.h */, 1044 F692A8700255597D01FF60F7 /* NumberObject.cpp */, 1045 F692A8710255597D01FF60F7 /* NumberObject.h */, 1046 1046 F692A8750255597D01FF60F7 /* JSObject.cpp */, 1047 1047 F692A8760255597D01FF60F7 /* JSObject.h */, … … 1050 1050 F692A8770255597D01FF60F7 /* operations.cpp */, 1051 1051 F692A8780255597D01FF60F7 /* operations.h */, 1052 F692A8790255597D01FF60F7 /* property_map.cpp */,1053 F692A87A0255597D01FF60F7 /* property_map.h */,1054 65621E6B089E859700760F35 /* property_slot.cpp */,1055 65621E6C089E859700760F35 /* property_slot.h */,1052 F692A8790255597D01FF60F7 /* PropertyMap.cpp */, 1053 F692A87A0255597D01FF60F7 /* PropertyMap.h */, 1054 65621E6B089E859700760F35 /* PropertySlot.cpp */, 1055 65621E6C089E859700760F35 /* PropertySlot.h */, 1056 1056 65400C0F0A69BAF200509887 /* PropertyNameArray.cpp */, 1057 1057 65400C100A69BAF200509887 /* PropertyNameArray.h */, … … 1059 1059 F692A87D0255597D01FF60F7 /* regexp.cpp */, 1060 1060 F692A87E0255597D01FF60F7 /* regexp.h */, 1061 F692A87B0255597D01FF60F7 /* regexp_object.cpp */,1062 F692A87C0255597D01FF60F7 /* regexp_object.h */,1063 9374D3A8038D9D74008635CE /* scope_chain.cpp */,1064 9374D3A7038D9D74008635CE /* scope_chain.h */,1065 7E2C6C980D31C6B6002D44E2 /* scope_chain_mark.h */,1061 F692A87B0255597D01FF60F7 /* RegExpObject.cpp */, 1062 F692A87C0255597D01FF60F7 /* RegExpObject.h */, 1063 9374D3A8038D9D74008635CE /* ScopeChain.cpp */, 1064 9374D3A7038D9D74008635CE /* ScopeChain.h */, 1065 7E2C6C980D31C6B6002D44E2 /* ScopeChainMark.h */, 1066 1066 F692A87F0255597D01FF60F7 /* string_object.cpp */, 1067 1067 F692A8800255597D01FF60F7 /* string_object.h */, … … 1236 1236 6592C318098B7DE10003D4F6 /* Vector.h in Headers */, 1237 1237 6592C319098B7DE10003D4F6 /* VectorTraits.h in Headers */, 1238 932F5B670822A1C700736975 /* array_instance.h in Headers */,1239 932F5B400822A1C700736975 /* array_object.h in Headers */,1240 65B1749A09D0FEB700820339 /* array_object.lut.h in Headers */,1241 932F5B720822A1C700736975 /* bool_object.h in Headers */,1238 932F5B670822A1C700736975 /* JSArray.h in Headers */, 1239 932F5B400822A1C700736975 /* ArrayPrototype.h in Headers */, 1240 65B1749A09D0FEB700820339 /* ArrayPrototype.lut.h in Headers */, 1241 932F5B720822A1C700736975 /* BooleanObject.h in Headers */, 1242 1242 932F5B420822A1C700736975 /* collector.h in Headers */, 1243 1243 932F5B650822A1C700736975 /* completion.h in Headers */, … … 1250 1250 932F5B460822A1C700736975 /* error_object.h in Headers */, 1251 1251 932F5B480822A1C700736975 /* JSFunction.h in Headers */, 1252 932F5B470822A1C700736975 /* function_object.h in Headers */,1252 932F5B470822A1C700736975 /* FunctionPrototype.h in Headers */, 1253 1253 65FB3F5109D11B2400F49DEB /* grammar.h in Headers */, 1254 1254 932F5B660822A1C700736975 /* identifier.h in Headers */, … … 1259 1259 932F5B6A0822A1C700736975 /* list.h in Headers */, 1260 1260 932F5B4D0822A1C700736975 /* lookup.h in Headers */, 1261 932F5B4E0822A1C700736975 /* math_object.h in Headers */,1262 65B174F509D100FA00820339 /* math_object.lut.h in Headers */,1261 932F5B4E0822A1C700736975 /* MathObject.h in Headers */, 1262 65B174F509D100FA00820339 /* MathObject.lut.h in Headers */, 1263 1263 932F5B500822A1C700736975 /* nodes.h in Headers */, 1264 932F5B510822A1C700736975 /* number_object.h in Headers */,1265 65B174F609D100FA00820339 /* number_object.lut.h in Headers */,1264 932F5B510822A1C700736975 /* NumberObject.h in Headers */, 1265 65B174F609D100FA00820339 /* NumberObject.lut.h in Headers */, 1266 1266 932F5B540822A1C700736975 /* JSObject.h in Headers */, 1267 1267 932F5B530822A1C700736975 /* object_object.h in Headers */, … … 1269 1269 932F5B6C0822A1C700736975 /* pcre.h in Headers */, 1270 1270 93E26BE608B1517100F85226 /* pcre_internal.h in Headers */, 1271 932F5B560822A1C700736975 /* property_map.h in Headers */,1272 65621E6E089E859700760F35 /* property_slot.h in Headers */,1271 932F5B560822A1C700736975 /* PropertyMap.h in Headers */, 1272 65621E6E089E859700760F35 /* PropertySlot.h in Headers */, 1273 1273 932F5B880822A1C700736975 /* protect.h in Headers */, 1274 1274 932F5B580822A1C700736975 /* regexp.h in Headers */, 1275 932F5B570822A1C700736975 /* regexp_object.h in Headers */,1276 65FB3F5409D11B2400F49DEB /* regexp_object.lut.h in Headers */,1277 932F5B680822A1C700736975 /* scope_chain.h in Headers */,1275 932F5B570822A1C700736975 /* RegExpObject.h in Headers */, 1276 65FB3F5409D11B2400F49DEB /* RegExpObject.lut.h in Headers */, 1277 932F5B680822A1C700736975 /* ScopeChain.h in Headers */, 1278 1278 932F5B590822A1C700736975 /* string_object.h in Headers */, 1279 1279 65B174F809D100FA00820339 /* string_object.lut.h in Headers */, -
trunk/JavaScriptCore/JavaScriptCoreSources.bkl
r34581 r34582 44 44 <set append="1" var="JSCORE_SOURCES_KJS"> 45 45 DerivedSources/JavaScriptCore/grammar.cpp 46 kjs/ array_instance.cpp47 kjs/ array_object.cpp48 kjs/ bool_object.cpp46 kjs/JSArray.cpp 47 kjs/ArrayPrototype.cpp 48 kjs/BooleanObject.cpp 49 49 kjs/collector.cpp 50 50 kjs/CommonIdentifiers.cpp … … 57 57 kjs/ExecState.cpp 58 58 kjs/JSFunction.cpp 59 kjs/ function_object.cpp59 kjs/FunctionPrototype.cpp 60 60 kjs/identifier.cpp 61 61 kjs/InitializeThreading.cpp … … 73 73 kjs/list.cpp 74 74 kjs/lookup.cpp 75 kjs/ math_object.cpp75 kjs/MathObject.cpp 76 76 kjs/nodes.cpp 77 77 kjs/nodes2string.cpp 78 kjs/ number_object.cpp78 kjs/NumberObject.cpp 79 79 kjs/JSObject.cpp 80 80 kjs/object_object.cpp 81 81 kjs/operations.cpp 82 82 kjs/Parser.cpp 83 kjs/ property_map.cpp84 kjs/ property_slot.cpp83 kjs/PropertyMap.cpp 84 kjs/PropertySlot.cpp 85 85 kjs/PropertyNameArray.cpp 86 86 kjs/regexp.cpp 87 kjs/ regexp_object.cpp88 kjs/ scope_chain.cpp87 kjs/RegExpObject.cpp 88 kjs/ScopeChain.cpp 89 89 kjs/string_object.cpp 90 90 kjs/ustring.cpp -
trunk/JavaScriptCore/VM/Machine.cpp
r34581 r34582 41 41 #include "Profiler.h" 42 42 #include "Register.h" 43 #include " array_object.h"43 #include "ArrayPrototype.h" 44 44 #include "debugger.h" 45 45 #include "JSFunction.h" … … 48 48 #include "operations.h" 49 49 #include "operations.h" 50 #include " regexp_object.h"50 #include "RegExpObject.h" 51 51 52 52 namespace KJS { -
trunk/JavaScriptCore/kjs/AllInOneFile.cpp
r34581 r34582 29 29 #include "JSFunction.cpp" 30 30 #include "debugger.cpp" 31 #include " array_instance.cpp"32 #include " array_object.cpp"33 #include " bool_object.cpp"31 #include "JSArray.cpp" 32 #include "ArrayPrototype.cpp" 33 #include "BooleanObject.cpp" 34 34 #include "collector.cpp" 35 35 #if PLATFORM(DARWIN) … … 41 41 #include "dtoa.cpp" 42 42 #include "error_object.cpp" 43 #include " function_object.cpp"43 #include "FunctionPrototype.cpp" 44 44 #include "grammar.cpp" 45 45 #include "identifier.cpp" … … 52 52 #include "list.cpp" 53 53 #include "lookup.cpp" 54 #include " math_object.cpp"54 #include "MathObject.cpp" 55 55 #include "nodes.cpp" 56 56 #include "nodes2string.cpp" 57 #include " number_object.cpp"57 #include "NumberObject.cpp" 58 58 #include "JSObject.cpp" 59 59 #include "object_object.cpp" 60 60 #include "operations.cpp" 61 61 #include "Parser.cpp" 62 #include " property_map.cpp"63 #include " property_slot.cpp"62 #include "PropertyMap.cpp" 63 #include "PropertySlot.cpp" 64 64 #include "PropertyNameArray.cpp" 65 65 #include "regexp.cpp" 66 #include " regexp_object.cpp"67 #include " scope_chain.cpp"66 #include "RegExpObject.cpp" 67 #include "ScopeChain.cpp" 68 68 #include "string_object.cpp" 69 69 #include "ustring.cpp" -
trunk/JavaScriptCore/kjs/ArrayPrototype.cpp
r34580 r34582 23 23 24 24 #include "config.h" 25 #include " array_object.h"26 #include " array_object.lut.h"25 #include "ArrayPrototype.h" 26 #include "ArrayPrototype.lut.h" 27 27 28 28 #include "Machine.h" … … 42 42 const ClassInfo ArrayPrototype::info = {"Array", &JSArray::info, 0, ExecState::arrayTable}; 43 43 44 /* Source for array_object.lut.h44 /* Source for ArrayPrototype.lut.h 45 45 @begin arrayTable 16 46 46 toString arrayProtoFuncToString DontEnum|Function 0 -
trunk/JavaScriptCore/kjs/ArrayPrototype.h
r34580 r34582 19 19 */ 20 20 21 #ifndef A RRAY_OBJECT_H_22 #define A RRAY_OBJECT_H_21 #ifndef ArrayPrototype_h 22 #define ArrayPrototype_h 23 23 24 #include " array_instance.h"25 #include " function_object.h"24 #include "JSArray.h" 25 #include "FunctionPrototype.h" 26 26 #include "lookup.h" 27 27 … … 70 70 } // namespace KJS 71 71 72 #endif // A RRAY_OBJECT_H_72 #endif // ArrayPrototype_h -
trunk/JavaScriptCore/kjs/BooleanObject.cpp
r34580 r34582 20 20 21 21 #include "config.h" 22 #include " bool_object.h"22 #include "BooleanObject.h" 23 23 24 24 #include "JSGlobalObject.h" -
trunk/JavaScriptCore/kjs/BooleanObject.h
r34580 r34582 19 19 */ 20 20 21 #ifndef B OOL_OBJECT_H_22 #define B OOL_OBJECT_H_21 #ifndef BooleanObject_h 22 #define BooleanObject_h 23 23 24 #include " function_object.h"24 #include "FunctionPrototype.h" 25 25 #include "JSWrapperObject.h" 26 26 … … 63 63 } // namespace KJS 64 64 65 #endif // B OOL_OBJECT_H_65 #endif // BooleanObject_h -
trunk/JavaScriptCore/kjs/ExecState.cpp
r34581 r34582 28 28 #include "JSFunction.h" 29 29 #include "JSString.h" 30 #include " scope_chain_mark.h"30 #include "ScopeChainMark.h" 31 31 32 32 namespace KJS { -
trunk/JavaScriptCore/kjs/ExecState.h
r34580 r34582 30 30 #include "completion.h" 31 31 #include "list.h" 32 #include " scope_chain.h"32 #include "ScopeChain.h" 33 33 34 34 namespace KJS { -
trunk/JavaScriptCore/kjs/FunctionPrototype.cpp
r34581 r34582 20 20 21 21 #include "config.h" 22 #include " function_object.h"22 #include "FunctionPrototype.h" 23 23 24 24 #include "JSGlobalObject.h" 25 25 #include "Parser.h" 26 #include " array_object.h"26 #include "ArrayPrototype.h" 27 27 #include "debugger.h" 28 28 #include "JSFunction.h" -
trunk/JavaScriptCore/kjs/FunctionPrototype.h
r34581 r34582 21 21 */ 22 22 23 #ifndef F UNCTION_OBJECT_H_24 #define F UNCTION_OBJECT_H_23 #ifndef FunctionPrototype_h 24 #define FunctionPrototype_h 25 25 26 26 #include "object_object.h" -
trunk/JavaScriptCore/kjs/JSArray.cpp
r34578 r34582 22 22 23 23 #include "config.h" 24 #include " array_instance.h"24 #include "JSArray.h" 25 25 26 26 #include "PropertyNameArray.h" -
trunk/JavaScriptCore/kjs/JSArray.h
r34581 r34582 20 20 */ 21 21 22 #ifndef ARRAY_INSTANCE_H23 #define ARRAY_INSTANCE_H22 #ifndef JSArray_h 23 #define JSArray_h 24 24 25 25 #include "JSObject.h" -
trunk/JavaScriptCore/kjs/JSFunction.cpp
r34581 r34582 35 35 #include "debugger.h" 36 36 #include "dtoa.h" 37 #include " function_object.h"37 #include "FunctionPrototype.h" 38 38 #include "JSString.h" 39 39 #include "lexer.h" 40 40 #include "nodes.h" 41 41 #include "operations.h" 42 #include " scope_chain_mark.h"42 #include "ScopeChainMark.h" 43 43 #include <errno.h> 44 44 #include <profiler/Profiler.h> -
trunk/JavaScriptCore/kjs/JSFunction.h
r34581 r34582 23 23 */ 24 24 25 #ifndef KJS_FUNCTION_H26 #define KJS_FUNCTION_H25 #ifndef JSFunction_h 26 #define JSFunction_h 27 27 28 28 #include "JSVariableObject.h" -
trunk/JavaScriptCore/kjs/JSGlobalObject.cpp
r34580 r34582 32 32 33 33 #include "CodeBlock.h" 34 #include " array_object.h"35 #include " bool_object.h"34 #include "ArrayPrototype.h" 35 #include "BooleanObject.h" 36 36 #include "date_object.h" 37 37 #include "debugger.h" 38 38 #include "error_object.h" 39 #include " function_object.h"40 #include " math_object.h"41 #include " number_object.h"39 #include "FunctionPrototype.h" 40 #include "MathObject.h" 41 #include "NumberObject.h" 42 42 #include "object_object.h" 43 #include " regexp_object.h"44 #include " scope_chain_mark.h"43 #include "RegExpObject.h" 44 #include "ScopeChainMark.h" 45 45 #include "string_object.h" 46 46 -
trunk/JavaScriptCore/kjs/JSImmediate.cpp
r34581 r34582 23 23 24 24 #include "JSGlobalObject.h" 25 #include " bool_object.h"25 #include "BooleanObject.h" 26 26 #include "JSNotAnObject.h" 27 #include " number_object.h"27 #include "NumberObject.h" 28 28 #include "JSObject.h" 29 29 -
trunk/JavaScriptCore/kjs/JSObject.h
r34581 r34582 29 29 #include "JSType.h" 30 30 #include "list.h" 31 #include " property_map.h"32 #include " property_slot.h"33 #include " scope_chain.h"31 #include "PropertyMap.h" 32 #include "PropertySlot.h" 33 #include "ScopeChain.h" 34 34 35 35 namespace KJS { -
trunk/JavaScriptCore/kjs/JSString.h
r34581 r34582 22 22 */ 23 23 24 #ifndef INTERNAL_H25 #define INTERNAL_H24 #ifndef JSString_h 25 #define JSString_h 26 26 27 27 #include "JSObject.h" … … 92 92 } // namespace 93 93 94 #endif // INTERNAL_H94 #endif // JSString_h -
trunk/JavaScriptCore/kjs/JSValue.h
r34581 r34582 21 21 */ 22 22 23 #ifndef KJS_VALUE_H24 #define KJS_VALUE_H23 #ifndef JSValue_h 24 #define JSValue_h 25 25 26 26 #include "CallData.h" … … 614 614 } // namespace KJS 615 615 616 #endif // KJS_VALUE_H616 #endif // JSValue_h -
trunk/JavaScriptCore/kjs/JSVariableObject.cpp
r33979 r34582 31 31 32 32 #include "PropertyNameArray.h" 33 #include " property_map.h"33 #include "PropertyMap.h" 34 34 35 35 namespace KJS { -
trunk/JavaScriptCore/kjs/MathObject.cpp
r34580 r34582 20 20 21 21 #include "config.h" 22 #include " math_object.h"23 #include " math_object.lut.h"22 #include "MathObject.h" 23 #include "MathObject.lut.h" 24 24 25 25 #include "operations.h" … … 34 34 const ClassInfo MathObject::info = { "Math", 0, 0, ExecState::mathTable }; 35 35 36 /* Source for math_object.lut.h36 /* Source for MathObject.lut.h 37 37 @begin mathTable 21 38 38 E MathObject::Euler DontEnum|DontDelete|ReadOnly -
trunk/JavaScriptCore/kjs/MathObject.h
r34580 r34582 20 20 */ 21 21 22 #ifndef M ATH_OBJECT_H_23 #define M ATH_OBJECT_H_22 #ifndef MathObject_h 23 #define MathObject_h 24 24 25 #include " function_object.h"25 #include "FunctionPrototype.h" 26 26 #include "lookup.h" 27 27 … … 63 63 } // namespace KJS 64 64 65 #endif // M ATH_OBJECT_H_65 #endif // MathObject_h -
trunk/JavaScriptCore/kjs/NumberObject.cpp
r34580 r34582 21 21 22 22 #include "config.h" 23 #include " number_object.h"24 #include " number_object.lut.h"23 #include "NumberObject.h" 24 #include "NumberObject.lut.h" 25 25 26 26 #include "dtoa.h" … … 453 453 const ClassInfo NumberConstructor::info = { "Function", &InternalFunction::info, 0, ExecState::numberTable }; 454 454 455 /* Source for number_object.lut.h455 /* Source for NumberObject.lut.h 456 456 @begin numberTable 5 457 457 NaN NumberConstructor::NaNValue DontEnum|DontDelete|ReadOnly -
trunk/JavaScriptCore/kjs/NumberObject.h
r34580 r34582 20 20 */ 21 21 22 #ifndef N UMBER_OBJECT_H_23 #define N UMBER_OBJECT_H_22 #ifndef NumberObject_h 23 #define NumberObject_h 24 24 25 #include " function_object.h"25 #include "FunctionPrototype.h" 26 26 #include "JSWrapperObject.h" 27 27 … … 74 74 } // namespace KJS 75 75 76 #endif // N UMBER_OBJECT_H_76 #endif // NumberObject_h -
trunk/JavaScriptCore/kjs/PropertyMap.cpp
r34581 r34582 20 20 21 21 #include "config.h" 22 #include " property_map.h"22 #include "PropertyMap.h" 23 23 24 24 #include "JSObject.h" -
trunk/JavaScriptCore/kjs/PropertyMap.h
r34577 r34582 20 20 */ 21 21 22 #ifndef KJS_PROPERTY_MAP_H_23 #define KJS_PROPERTY_MAP_H_22 #ifndef PropertyMap_h 23 #define PropertyMap_h 24 24 25 25 #include "identifier.h" -
trunk/JavaScriptCore/kjs/PropertySlot.cpp
r34581 r34582 22 22 23 23 #include "config.h" 24 #include " property_slot.h"24 #include "PropertySlot.h" 25 25 26 26 #include "JSGlobalObject.h" -
trunk/JavaScriptCore/kjs/PropertySlot.h
r34581 r34582 20 20 */ 21 21 22 #ifndef KJS_PROPERTY_SLOT_H23 #define KJS_PROPERTY_SLOT_H22 #ifndef PropertySlot_h 23 #define PropertySlot_h 24 24 25 25 #include "identifier.h" … … 169 169 } 170 170 171 #endif // KJS_PROPERTY_SLOT_H171 #endif // PropertySlot_h -
trunk/JavaScriptCore/kjs/RegExpObject.cpp
r34581 r34582 20 20 21 21 #include "config.h" 22 #include " regexp_object.h"23 #include " regexp_object.lut.h"24 25 #include " array_instance.h"26 #include " array_object.h"22 #include "RegExpObject.h" 23 #include "RegExpObject.lut.h" 24 25 #include "JSArray.h" 26 #include "ArrayPrototype.h" 27 27 #include "error_object.h" 28 28 #include "JSString.h" … … 125 125 const ClassInfo RegExpObject::info = { "RegExp", 0, 0, ExecState::regExpTable }; 126 126 127 /* Source for regexp_object.lut.h127 /* Source for RegExpObject.lut.h 128 128 @begin regExpTable 5 129 129 global RegExpObject::Global DontDelete|ReadOnly|DontEnum … … 245 245 const ClassInfo RegExpConstructor::info = { "Function", &InternalFunction::info, 0, ExecState::regExpConstructorTable }; 246 246 247 /* Source for regexp_object.lut.h247 /* Source for RegExpObject.lut.h 248 248 @begin regExpConstructorTable 21 249 249 input RegExpConstructor::Input None -
trunk/JavaScriptCore/kjs/RegExpObject.h
r34580 r34582 19 19 */ 20 20 21 #ifndef R EGEXP_OBJECT_H_22 #define R EGEXP_OBJECT_H_21 #ifndef RegExpObject_h 22 #define RegExpObject_h 23 23 24 #include " function_object.h"24 #include "FunctionPrototype.h" 25 25 #include "regexp.h" 26 26 -
trunk/JavaScriptCore/kjs/ScopeChain.cpp
r34581 r34582 21 21 22 22 #include "config.h" 23 #include " scope_chain.h"23 #include "ScopeChain.h" 24 24 25 25 #include "PropertyNameArray.h" -
trunk/JavaScriptCore/kjs/ScopeChainMark.h
r34577 r34582 19 19 */ 20 20 21 #ifndef scope_chain_mark_h22 #define scope_chain_mark_h21 #ifndef ScopeChainMark_h 22 #define ScopeChainMark_h 23 23 24 #include " scope_chain.h"24 #include "ScopeChain.h" 25 25 26 26 namespace KJS { -
trunk/JavaScriptCore/kjs/Shell.cpp
r34581 r34582 27 27 #include "JSLock.h" 28 28 #include "Parser.h" 29 #include " array_object.h"29 #include "ArrayPrototype.h" 30 30 #include "collector.h" 31 31 #include "JSFunction.h" -
trunk/JavaScriptCore/kjs/error_object.h
r34580 r34582 22 22 #define ERROR_OBJECT_H_ 23 23 24 #include " function_object.h"24 #include "FunctionPrototype.h" 25 25 26 26 namespace KJS { -
trunk/JavaScriptCore/kjs/internal.cpp
r34581 r34582 25 25 26 26 #include "ExecState.h" 27 #include " array_object.h"28 #include " bool_object.h"27 #include "ArrayPrototype.h" 28 #include "BooleanObject.h" 29 29 #include "collector.h" 30 30 #include "date_object.h" 31 31 #include "debugger.h" 32 32 #include "error_object.h" 33 #include " function_object.h"33 #include "FunctionPrototype.h" 34 34 #include "lexer.h" 35 #include " math_object.h"35 #include "MathObject.h" 36 36 #include "nodes.h" 37 #include " number_object.h"37 #include "NumberObject.h" 38 38 #include "JSObject.h" 39 39 #include "object_object.h" 40 40 #include "operations.h" 41 #include " regexp_object.h"41 #include "RegExpObject.h" 42 42 #include "string_object.h" 43 43 #include <math.h> -
trunk/JavaScriptCore/kjs/nodes.cpp
r34578 r34582 32 32 #include "Parser.h" 33 33 #include "PropertyNameArray.h" 34 #include " array_object.h"34 #include "ArrayPrototype.h" 35 35 #include "debugger.h" 36 #include " function_object.h"36 #include "FunctionPrototype.h" 37 37 #include "lexer.h" 38 38 #include "operations.h" 39 #include " regexp_object.h"39 #include "RegExpObject.h" 40 40 #include <math.h> 41 41 #include <wtf/Assertions.h> -
trunk/JavaScriptCore/kjs/object_object.cpp
r34580 r34582 24 24 #include "JSGlobalObject.h" 25 25 #include "operations.h" 26 #include " function_object.h"26 #include "FunctionPrototype.h" 27 27 #include <stdio.h> 28 28 -
trunk/JavaScriptCore/kjs/string_object.cpp
r34580 r34582 26 26 #include "JSWrapperObject.h" 27 27 #include "PropertyNameArray.h" 28 #include " array_object.h"28 #include "ArrayPrototype.h" 29 29 #include "error_object.h" 30 30 #include "operations.h" 31 #include " regexp_object.h"31 #include "RegExpObject.h" 32 32 #include <wtf/MathExtras.h> 33 33 #include <wtf/unicode/Collator.h> -
trunk/JavaScriptCore/kjs/string_object.h
r34581 r34582 23 23 #define STRING_OBJECT_H_ 24 24 25 #include " function_object.h"25 #include "FunctionPrototype.h" 26 26 #include "JSWrapperObject.h" 27 27 #include "JSString.h"
Note:
See TracChangeset
for help on using the changeset viewer.