Changeset 55599 in webkit for trunk/JavaScriptCore/runtime/Identifier.h
- Timestamp:
- Mar 5, 2010, 3:29:13 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Identifier.h
r54789 r55599 55 55 const char* ascii() const { return _ustring.ascii(); } 56 56 57 static Identifier from(ExecState* exec, unsigned y) { return Identifier(exec, UString::from(y)); }58 static Identifier from(ExecState* exec, int y) { return Identifier(exec, UString::from(y)); }59 static Identifier from(ExecState* exec, double y) { return Identifier(exec, UString::from(y)); }57 static Identifier from(ExecState* exec, unsigned y); 58 static Identifier from(ExecState* exec, int y); 59 static Identifier from(ExecState* exec, double y); 60 60 61 61 bool isNull() const { return _ustring.isNull(); }
Note:
See TracChangeset
for help on using the changeset viewer.