Changeset 3098 in webkit for trunk/JavaScriptCore
- Timestamp:
- Dec 17, 2002, 12:09:02 AM (22 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 1 deleted
- 34 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r3091 r3098 1 2002-12-16 Darin Adler <[email protected]> 2 3 Reviewed by Don and Maciej. 4 5 - fixed 3129115 -- need Apple copyright added to open source documents 6 7 * tons of files: Added our copyright to files we modified, and updated all to standard format. 8 9 - other changes 10 11 * JavaScriptCore.pbproj/project.pbxproj: Set MACOSX_DEPLOYMENT_TARGET to 10.2. 12 Also removed completion.cpp. 13 * kjs/completion.cpp: Removed. 14 * kjs/completion.h: Made the Completion constructor inline. 15 16 * kjs/grammar.y: Removed an obsolete "pretend ifdef". No need to put these in APPLE_CHANGES now. 17 1 18 === Alexander-37 === 2 19 -
trunk/JavaScriptCore/ChangeLog-2003-10-25
r3091 r3098 1 2002-12-16 Darin Adler <[email protected]> 2 3 Reviewed by Don and Maciej. 4 5 - fixed 3129115 -- need Apple copyright added to open source documents 6 7 * tons of files: Added our copyright to files we modified, and updated all to standard format. 8 9 - other changes 10 11 * JavaScriptCore.pbproj/project.pbxproj: Set MACOSX_DEPLOYMENT_TARGET to 10.2. 12 Also removed completion.cpp. 13 * kjs/completion.cpp: Removed. 14 * kjs/completion.h: Made the Completion constructor inline. 15 16 * kjs/grammar.y: Removed an obsolete "pretend ifdef". No need to put these in APPLE_CHANGES now. 17 1 18 === Alexander-37 === 2 19 -
trunk/JavaScriptCore/JavaScriptCore.pbproj/project.pbxproj
r3096 r3098 123 123 INSTALL_PATH = "@executable_path/../Frameworks"; 124 124 LIBRARY_SEARCH_PATHS = ""; 125 MACOSX_DEPLOYMENT_TARGET = 10.2; 125 126 OPTIMIZATION_CFLAGS = "-Os"; 126 127 OTHER_CFLAGS = "$(DEBUG_CFLAGS) -DAPPLE_CHANGES -DHAVE_CONFIG_H"; … … 271 272 F5341392030CEEB1018BE7F3, 272 273 F5341395030CF5F8018BE7F3, 273 F5BB2BC6030F772101FCFE1D,274 274 933A349E038AE80F008635CE, 275 275 9374D3AA038D9D74008635CE, … … 338 338 F692A8520255597D01FF60F7, 339 339 F5BB2BC5030F772101FCFE1D, 340 F5BB2BC4030F772101FCFE1D,341 340 9373524E038DA8C2008635CE, 342 341 F692A8560255597D01FF60F7, … … 839 838 name = Mixed; 840 839 }; 841 F5BB2BC4030F772101FCFE1D = {842 fileEncoding = 30;843 isa = PBXFileReference;844 path = completion.cpp;845 refType = 4;846 };847 840 F5BB2BC5030F772101FCFE1D = { 848 841 fileEncoding = 30; … … 850 843 path = completion.h; 851 844 refType = 4; 852 };853 F5BB2BC6030F772101FCFE1D = {854 fileRef = F5BB2BC4030F772101FCFE1D;855 isa = PBXBuildFile;856 settings = {857 };858 845 }; 859 846 F5BB2BC7030F772101FCFE1D = { -
trunk/JavaScriptCore/kjs/array_instance.h
r3018 r3098 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 * Copyright (C) 2002 Apple Computer, Inc. 5 6 * 6 7 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/array_object.cpp
r3018 r3098 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 * Copyright (C) 2002 Apple Computer, Inc. 5 6 * 6 7 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/bool_object.cpp
r2783 r3098 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 * Copyright (C) 2002 Apple Computer, Inc. 5 6 * 6 7 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/collector.cpp
r2894 r3098 2 2 /* 3 3 * This file is part of the KDE libraries 4 * Copyright (C) 2002 Apple Computer, Inc 4 * Copyright (C) 2002 Apple Computer, Inc. 5 5 * 6 6 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/collector.h
r2843 r3098 4 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 5 * Copyright (C) 2001 Peter Kelly ([email protected]) 6 * Copyright (C) 2002 Apple Computer, Inc. 6 7 * 7 8 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/completion.h
r2760 r3098 49 49 public: 50 50 Completion(ComplType c = Normal, const Value& v = Value(), 51 const Identifier &t = Identifier::null); 51 const Identifier &t = Identifier::null) 52 : comp(c), val(v), tar(t) { } 52 53 53 54 ComplType complType() const { return comp; } -
trunk/JavaScriptCore/kjs/context.h
r2883 r3098 4 4 * Copyright (C) 1999-2001 Harri Porten ([email protected]) 5 5 * Copyright (C) 2001 Peter Kelly ([email protected]) 6 * Copyright (C) 2002 Apple Computer, Inc. 6 7 * 7 8 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/date_object.cpp
r2783 r3098 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 * Copyright (C) 2002 Apple Computer, Inc. 5 6 * 6 7 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/error_object.cpp
r2783 r3098 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 * Copyright (C) 2002 Apple Computer, Inc. 5 6 * 6 7 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/function.cpp
r3009 r3098 4 4 * Copyright (C) 1999-2002 Harri Porten ([email protected]) 5 5 * Copyright (C) 2001 Peter Kelly ([email protected]) 6 * Copyright (C) 2002 Apple Computer, Inc. 6 7 * 7 8 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/function.h
r3009 r3098 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 * Copyright (C) 2002 Apple Computer, Inc. 5 6 * 6 7 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/function_object.cpp
r2834 r3098 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 1999-2001 Harri Porten ([email protected]) 5 * Copyright (C) 2002 Apple Computer, Inc. 5 6 * 6 7 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/grammar.cpp
r2847 r3098 334 334 551, 553, 556, 558, 561, 567, 571, 573, 574, 577, 335 335 581, 585, 588, 592, 594, 599, 601, 605, 608, 612, 336 615, 619, 62 2, 628, 630336 615, 619, 621, 624, 626 337 337 }; 338 338 #endif … … 1964 1964 break;} 1965 1965 case 193: 1966 #line 62 2"grammar.y"1966 #line 621 "grammar.y" 1967 1967 { yyval.srcs = new SourceElementsNode(yyvsp[0].srcs, yyvsp[-1].src); ; 1968 1968 break;} 1969 1969 case 194: 1970 #line 62 9"grammar.y"1970 #line 625 "grammar.y" 1971 1971 { yyval.src = new SourceElementNode(yyvsp[0].stat); ; 1972 1972 break;} 1973 1973 case 195: 1974 #line 6 30"grammar.y"1974 #line 626 "grammar.y" 1975 1975 { yyval.src = new SourceElementNode(yyvsp[0].func); ; 1976 1976 break;} … … 2198 2198 return 1; 2199 2199 } 2200 #line 6 33"grammar.y"2200 #line 629 "grammar.y" 2201 2201 2202 2202 -
trunk/JavaScriptCore/kjs/grammar.y
r2847 r3098 619 619 SourceElements: 620 620 SourceElement { $$ = new SourceElementsNode($1); } 621 /* #ifdef APPLE_CHANGES (not using an actual ifdef because this is yacc) */622 621 | SourceElement SourceElements { $$ = new SourceElementsNode($2, $1); } 623 /* #else */624 /*| SourceElements SourceElement { $$ = new SourceElementsNode($1, $2); } */625 /* #endif */626 622 ; 627 623 -
trunk/JavaScriptCore/kjs/internal.cpp
r3009 r3098 4 4 * Copyright (C) 1999-2002 Harri Porten ([email protected]) 5 5 * Copyright (C) 2001 Peter Kelly ([email protected]) 6 * Copyright (C) 2002 Apple Computer, Inc. 6 7 * 7 8 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/internal.h
r2935 r3098 4 4 * Copyright (C) 1999-2001 Harri Porten ([email protected]) 5 5 * Copyright (C) 2001 Peter Kelly ([email protected]) 6 * Copyright (C) 2002 Apple Computer, Inc. 6 7 * 7 8 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/interpreter.cpp
r3009 r3098 4 4 * Copyright (C) 1999-2001 Harri Porten ([email protected]) 5 5 * Copyright (C) 2001 Peter Kelly ([email protected]) 6 * Copyright (C) 2002 Apple Computer, Inc. 6 7 * 7 8 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/interpreter.h
r2935 r3098 4 4 * Copyright (C) 1999-2001 Harri Porten ([email protected]) 5 5 * Copyright (C) 2001 Peter Kelly ([email protected]) 6 * Copyright (C) 2002 Apple Computer, Inc. 6 7 * 7 8 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/lookup.cpp
r2800 r3098 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 * Copyright (C) 2002 Apple Computer, Inc. 5 6 * 6 7 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/lookup.h
r2760 r3098 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 * Copyright (C) 2002 Apple Computer, Inc. 5 6 * 6 7 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/nodes.cpp
r3009 r3098 4 4 * Copyright (C) 1999-2002 Harri Porten ([email protected]) 5 5 * Copyright (C) 2001 Peter Kelly ([email protected]) 6 * Copyright (C) 2002 Apple Computer, Inc. 6 7 * 7 8 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/nodes.h
r2847 r3098 4 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 5 * Copyright (C) 2001 Peter Kelly ([email protected]) 6 * Copyright (C) 2002 Apple Computer, Inc. 6 7 * 7 8 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/nodes2string.cpp
r2766 r3098 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 2002 Harri Porten ([email protected]) 5 * Copyright (C) 2002 Apple Computer, Inc. 5 6 * 6 7 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/object.cpp
r2851 r3098 4 4 * Copyright (C) 1999-2001 Harri Porten ([email protected]) 5 5 * Copyright (C) 2001 Peter Kelly ([email protected]) 6 * Copyright (C) 2002 Apple Computer, Inc. 6 7 * 7 8 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/object.h
r3018 r3098 4 4 * Copyright (C) 1999-2001 Harri Porten ([email protected]) 5 5 * Copyright (C) 2001 Peter Kelly ([email protected]) 6 * Copyright (C) 2002 Apple Computer, Inc. 6 7 * 7 8 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/regexp_object.cpp
r2783 r3098 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 * Copyright (C) 2002 Apple Computer, Inc. 5 6 * 6 7 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/string_object.cpp
r2849 r3098 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 1999-2001 Harri Porten ([email protected]) 5 * Copyright (C) 2002 Apple Computer, Inc. 5 6 * 6 7 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/ustring.cpp
r3053 r3098 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 * Copyright (C) 2002 Apple Computer, Inc. 5 6 * 6 7 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/ustring.h
r2846 r3098 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 * Copyright (C) 2002 Apple Computer, Inc. 5 6 * 6 7 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/value.cpp
r2883 r3098 4 4 * Copyright (C) 1999-2001 Harri Porten ([email protected]) 5 5 * Copyright (C) 2001 Peter Kelly ([email protected]) 6 * Copyright (C) 2002 Apple Computer, Inc. 6 7 * 7 8 * This library is free software; you can redistribute it and/or -
trunk/JavaScriptCore/kjs/value.h
r2845 r3098 4 4 * Copyright (C) 1999-2001 Harri Porten ([email protected]) 5 5 * Copyright (C) 2001 Peter Kelly ([email protected]) 6 * Copyright (C) 2002 Apple Computer, Inc. 6 7 * 7 8 * This library is free software; you can redistribute it and/or
Note:
See TracChangeset
for help on using the changeset viewer.