Changeset 1869 in webkit for trunk/JavaScriptCore
- Timestamp:
- Aug 19, 2002, 2:14:02 PM (23 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r1864 r1869 1 2002-08-19 Maciej Stachowiak <[email protected]> 2 3 Fixed the bug that made sony.com menus come out wrong and made 4 aa.com crash (Radar 3027762). 5 6 Mode most methods inline. 7 8 * kjs/completion.cpp: 9 * kjs/completion.h: 10 1 11 2002-08-19 Maciej Stachowiak <[email protected]> 2 12 -
trunk/JavaScriptCore/ChangeLog-2002-12-03
r1864 r1869 1 2002-08-19 Maciej Stachowiak <[email protected]> 2 3 Fixed the bug that made sony.com menus come out wrong and made 4 aa.com crash (Radar 3027762). 5 6 Mode most methods inline. 7 8 * kjs/completion.cpp: 9 * kjs/completion.h: 10 1 11 2002-08-19 Maciej Stachowiak <[email protected]> 2 12 -
trunk/JavaScriptCore/ChangeLog-2003-10-25
r1864 r1869 1 2002-08-19 Maciej Stachowiak <[email protected]> 2 3 Fixed the bug that made sony.com menus come out wrong and made 4 aa.com crash (Radar 3027762). 5 6 Mode most methods inline. 7 8 * kjs/completion.cpp: 9 * kjs/completion.h: 10 1 11 2002-08-19 Maciej Stachowiak <[email protected]> 2 12 -
trunk/JavaScriptCore/kjs/completion.cpp
r1859 r1869 33 33 { 34 34 } 35 36 ComplType Completion::complType() const37 {38 return comp;39 }40 41 Value Completion::value() const42 {43 return val;44 }45 46 UString Completion::target() const47 {48 return tar;49 }50 51 bool Completion::isValueCompletion() const52 {53 return val.isNull();54 } -
trunk/JavaScriptCore/kjs/completion.h
r1861 r1869 50 50 const UString &t = UString::null); 51 51 52 ComplType complType() const ;53 Value value() const ;54 UString target() const ;55 bool isValueCompletion() const ;52 ComplType complType() const { return comp; } 53 Value value() const { return val; } 54 UString target() const { return tar; } 55 bool isValueCompletion() const { return !val.isNull(); } 56 56 private: 57 57 ComplType comp;
Note:
See TracChangeset
for help on using the changeset viewer.