Changeset 93238 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Aug 17, 2011, 1:54:32 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r91952 r93238 77 77 return makeUString("\"", escapeQuotes(val.toString(exec)), "\""); 78 78 79 return val. toString(exec);79 return val.description(); 80 80 } 81 81 … … 543 543 int r0 = (++it)->u.operand; 544 544 int re0 = (++it)->u.operand; 545 printf("[%4d] new_regexp\t %s, %s\n", location, registerName(exec, r0).data(), regexpName(re0, regexp(re0)).data()); 545 printf("[%4d] new_regexp\t %s, ", location, registerName(exec, r0).data()); 546 if (r0 >=0 && r0 < (int)numberOfRegExps()) 547 printf("%s\n", regexpName(re0, regexp(re0)).data()); 548 else 549 printf("bad_regexp(%d)\n", re0); 546 550 break; 547 551 }
Note:
See TracChangeset
for help on using the changeset viewer.