Changeset 36036 in webkit for trunk/JavaScriptCore/kjs/nodes.h
- Timestamp:
- Sep 2, 2008, 7:58:14 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes.h
r35986 r36036 209 209 virtual bool isNumber() const KJS_FAST_CALL { return false; } 210 210 virtual bool isString() const KJS_FAST_CALL { return false; } 211 virtual bool isNull() const KJS_FAST_CALL { return false; } 211 212 virtual bool isPure(CodeGenerator&) const KJS_FAST_CALL { return false; } 212 213 virtual bool isLocation() const KJS_FAST_CALL { return false; } … … 245 246 { 246 247 } 248 249 virtual bool isNull() const KJS_FAST_CALL { return true; } 247 250 248 251 virtual RegisterID* emitCode(CodeGenerator&, RegisterID* = 0) KJS_FAST_CALL;
Note:
See TracChangeset
for help on using the changeset viewer.