Changeset 10148 in webkit for trunk/JavaScriptCore/kjs/nodes2string.cpp
- Timestamp:
- Aug 12, 2005, 12:36:00 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/nodes2string.cpp
r10135 r10148 196 196 } 197 197 198 void FunctionCall Node::streamTo(SourceStream &s) const198 void FunctionCallValueNode::streamTo(SourceStream &s) const 199 199 { 200 200 s << expr << args; 201 } 202 203 void FunctionCallResolveNode::streamTo(SourceStream &s) const 204 { 205 s << ident << args; 206 } 207 208 void FunctionCallBracketNode::streamTo(SourceStream &s) const 209 { 210 s << base << "[" << subscript << "]" << args; 211 } 212 213 void FunctionCallParenBracketNode::streamTo(SourceStream &s) const 214 { 215 s << "(" << base << "[" << subscript << "])" << args; 216 } 217 218 void FunctionCallDotNode::streamTo(SourceStream &s) const 219 { 220 s << base << "." << ident << args; 221 } 222 223 void FunctionCallParenDotNode::streamTo(SourceStream &s) const 224 { 225 s << "(" << base << "." << ident << ")" << args; 201 226 } 202 227
Note:
See TracChangeset
for help on using the changeset viewer.