Changeset 1869 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Aug 19, 2002, 2:14:02 PM (23 years ago)
- Location:
- trunk/JavaScriptCore/kjs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
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.