Changeset 36412 in webkit for trunk/JavaScriptCore/VM/CodeBlock.cpp
- Timestamp:
- Sep 14, 2008, 5:26:08 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeBlock.cpp
r36408 r36412 496 496 break; 497 497 } 498 case op_is_undefined: { 499 printUnaryOp(location, it, "is_undefined"); 500 break; 501 } 502 case op_is_boolean: { 503 printUnaryOp(location, it, "is_boolean"); 504 break; 505 } 506 case op_is_number: { 507 printUnaryOp(location, it, "is_number"); 508 break; 509 } 510 case op_is_string: { 511 printUnaryOp(location, it, "is_string"); 512 break; 513 } 514 case op_is_object: { 515 printUnaryOp(location, it, "is_object"); 516 break; 517 } 518 case op_is_function: { 519 printUnaryOp(location, it, "is_function"); 520 break; 521 } 498 522 case op_in: { 499 523 printBinaryOp(location, it, "in");
Note:
See TracChangeset
for help on using the changeset viewer.