Changeset 29812 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Jan 26, 2008, 4:40:59 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes2string.cpp
r29809 r29812 381 381 const FuncExprNode* func = static_cast<const FuncExprNode*>(assign.get()); 382 382 if (type == Getter) 383 s << "get \"";383 s << "get "; 384 384 else 385 s << "set \"";385 s << "set "; 386 386 s << escapeStringForPrettyPrinting(name().ustring()) 387 << " \"(" << func->param << ')' << func->body;387 << "(" << func->param << ')' << func->body; 388 388 break; 389 389 }
Note:
See TracChangeset
for help on using the changeset viewer.