Changeset 11527 in webkit for trunk/JavaScriptCore/kjs/completion.h
- Timestamp:
- Dec 10, 2005, 6:06:17 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/completion.h
r10084 r11527 48 48 class Completion { 49 49 public: 50 Completion(ComplType c = Normal, ValueImp*v = NULL, const Identifier &t = Identifier::null())50 Completion(ComplType c = Normal, JSValue *v = NULL, const Identifier &t = Identifier::null()) 51 51 : comp(c), val(v), tar(t) { } 52 52 53 53 ComplType complType() const { return comp; } 54 ValueImp*value() const { return val; }54 JSValue *value() const { return val; } 55 55 Identifier target() const { return tar; } 56 56 bool isValueCompletion() const { return val; } 57 57 private: 58 58 ComplType comp; 59 ValueImp*val;59 JSValue *val; 60 60 Identifier tar; 61 61 };
Note:
See TracChangeset
for help on using the changeset viewer.