Changeset 27394 in webkit for trunk/JavaScriptCore/kjs/nodes2string.cpp
- Timestamp:
- Nov 3, 2007, 3:09:45 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes2string.cpp
r27373 r27394 714 714 void VarDeclNode::streamTo(SourceStream& s) const 715 715 { 716 s << ident << init; 717 } 718 719 void VarDeclListNode::streamTo(SourceStream& s) const 720 { 721 s << "var " << var; 722 for (VarDeclListNode* n = next.get(); n; n = n->next.get()) 723 s << ", " << n->var; 716 s << "var " << ident << init; 717 for (VarDeclNode* n = next.get(); n; n = n->next.get()) 718 s << ", " << ident << init; 724 719 } 725 720
Note:
See TracChangeset
for help on using the changeset viewer.