Changeset 49030 in webkit for trunk/JavaScriptCore/runtime/JSValue.cpp
- Timestamp:
- Oct 2, 2009, 11:06:49 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSValue.cpp
r49005 r49030 111 111 static const size_t size = 32; 112 112 static char description[size]; 113 if (isInt32()) 113 114 if (!*this) 115 snprintf(description, size, "<JSValue()>"); 116 else if (isInt32()) 114 117 snprintf(description, size, "Int32: %d", asInt32()); 115 118 else if (isDouble())
Note:
See TracChangeset
for help on using the changeset viewer.