Changeset 3098 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Dec 17, 2002, 12:09:02 AM (22 years ago)
- Location:
- trunk/JavaScriptCore/kjs
- Files:
-
- 1 deleted
- 31 edited
Legend:
- Unmodified
- Added
- Removed
-
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.