Changeset 36660 in webkit for trunk/JavaScriptCore/VM/CodeGenerator.cpp
- Timestamp:
- Sep 18, 2008, 11:32:12 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeGenerator.cpp
r36604 r36660 1431 1431 UNUSED_PARAM(max); 1432 1432 ASSERT(node->isString()); 1433 UString::Rep* clause = static_cast<StringNode*>(node)->value(). rep();1433 UString::Rep* clause = static_cast<StringNode*>(node)->value().ustring().rep(); 1434 1434 ASSERT(clause->size() == 1); 1435 1435 … … 1461 1461 1462 1462 ASSERT(nodes[i]->isString()); 1463 UString::Rep* clause = static_cast<StringNode*>(nodes[i])->value(). rep();1463 UString::Rep* clause = static_cast<StringNode*>(nodes[i])->value().ustring().rep(); 1464 1464 OffsetLocation location; 1465 1465 location.branchOffset = labels[i]->offsetFrom(switchAddress);
Note:
See TracChangeset
for help on using the changeset viewer.