Changeset 27086 in webkit for trunk/JavaScriptCore/kjs/internal.h
- Timestamp:
- Oct 25, 2007, 8:58:18 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/internal.h
r26912 r27086 54 54 JSType type() const { return StringType; } 55 55 56 JSValue *toPrimitive(ExecState *exec, JSType preferred = UnspecifiedType) const; 56 JSValue* toPrimitive(ExecState*, JSType preferred = UnspecifiedType) const; 57 bool getPrimitiveNumber(ExecState*, double& number) const; 57 58 bool toBoolean(ExecState *exec) const; 58 59 double toNumber(ExecState *exec) const; … … 72 73 JSType type() const { return NumberType; } 73 74 74 JSValue *toPrimitive(ExecState *exec, JSType preferred = UnspecifiedType) const; 75 JSValue* toPrimitive(ExecState*, JSType preferred = UnspecifiedType) const; 76 bool getPrimitiveNumber(ExecState*, double& number) const; 75 77 bool toBoolean(ExecState *exec) const; 76 78 double toNumber(ExecState *exec) const;
Note:
See TracChangeset
for help on using the changeset viewer.