32 Endl, Indent, Unindent
35 UString toString()
const {
return str; }
91 ind = ind.substr(0, ind.size() - 2);
103 for (i = 0; i <= str.
size(); i++) {
106 unescaped += str.
substr(copied,i-copied);
112 unescaped += str.
substr(copied,i-copied);
121 return str.toString();
124void NullNode::streamTo(SourceStream &s)
const { s <<
"null"; }
126void BooleanNode::streamTo(SourceStream &s)
const
128 s << (val ?
"true" :
"false");
131void NumberNode::streamTo(SourceStream &s)
const { s << UString::from(val); }
133void StringNode::streamTo(SourceStream &s)
const
135 s <<
'"' << unescapeStr(val) <<
'"';
138void RegExpNode::streamTo(SourceStream &s)
const { s <<
"/" << pattern <<
"/" << flags; }
140void ThisNode::streamTo(SourceStream &s)
const { s <<
"this"; }
142void ResolveNode::streamTo(SourceStream &s)
const { s << ident; }
144void GroupNode::streamTo(SourceStream &s)
const
146 s <<
"(" << group <<
")";
149void ElementNode::streamTo(SourceStream &s)
const
151 for (
const ElementNode *n =
this; n; n = n->list) {
152 for (
int i = 0; i < n->elision; i++)
160void ArrayNode::streamTo(SourceStream &s)
const
163 for (
int i = 0; i < elision; i++)
168void ObjectLiteralNode::streamTo(SourceStream &s)
const
171 s <<
"{ " << list <<
" }";
176void PropertyValueNode::streamTo(SourceStream &s)
const
178 for (
const PropertyValueNode *n =
this; n; n = n->list)
179 s << n->name <<
": " << n->assign;
182void PropertyNode::streamTo(SourceStream &s)
const
185 s << UString::from(numeric);
190void AccessorNode1::streamTo(SourceStream &s)
const
192 s << expr1 <<
"[" << expr2 <<
"]";
195void AccessorNode2::streamTo(SourceStream &s)
const
197 s << expr <<
"." << ident;
200void ArgumentListNode::streamTo(SourceStream &s)
const
203 for (ArgumentListNode *n = list; n; n = n->list)
204 s <<
", " << n->expr;
207void ArgumentsNode::streamTo(SourceStream &s)
const
209 s <<
"(" << list <<
")";
212void NewExprNode::streamTo(SourceStream &s)
const
214 s <<
"new " << expr << args;
217void FunctionCallNode::streamTo(SourceStream &s)
const
222void PostfixNode::streamTo(SourceStream &s)
const
225 if (oper == OpPlusPlus)
231void DeleteNode::streamTo(SourceStream &s)
const
233 s <<
"delete " << expr;
236void VoidNode::streamTo(SourceStream &s)
const
238 s <<
"void " << expr;
241void TypeOfNode::streamTo(SourceStream &s)
const
243 s <<
"typeof " << expr;
246void PrefixNode::streamTo(SourceStream &s)
const
248 s << (oper == OpPlusPlus ?
"++" :
"--") << expr;
251void UnaryPlusNode::streamTo(SourceStream &s)
const
256void NegateNode::streamTo(SourceStream &s)
const
261void BitwiseNotNode::streamTo(SourceStream &s)
const
266void LogicalNotNode::streamTo(SourceStream &s)
const
271void MultNode::streamTo(SourceStream &s)
const
273 s << term1 << oper << term2;
276void AddNode::streamTo(SourceStream &s)
const
278 s << term1 << oper << term2;
281void AppendStringNode::streamTo(SourceStream &s)
const
283 s << term <<
"+" <<
'"' << unescapeStr(str) <<
'"';
286void ShiftNode::streamTo(SourceStream &s)
const
289 if (oper == OpLShift)
291 else if (oper == OpRShift)
298void RelationalNode::streamTo(SourceStream &s)
const
326void EqualNode::streamTo(SourceStream &s)
const
348void BitOperNode::streamTo(SourceStream &s)
const
351 if (oper == OpBitAnd)
353 else if (oper == OpBitXOr)
360void BinaryLogicalNode::streamTo(SourceStream &s)
const
362 s << expr1 << (oper == OpAnd ?
" && " :
" || ") << expr2;
365void ConditionalNode::streamTo(SourceStream &s)
const
367 s << logical <<
" ? " << expr1 <<
" : " << expr2;
370void AssignNode::streamTo(SourceStream &s)
const
417void CommaNode::streamTo(SourceStream &s)
const
419 s << expr1 <<
", " << expr2;
422void StatListNode::streamTo(SourceStream &s)
const
424 for (
const StatListNode *n =
this; n; n = n->list)
428void AssignExprNode::streamTo(SourceStream &s)
const
433void VarDeclNode::streamTo(SourceStream &s)
const
438void VarDeclListNode::streamTo(SourceStream &s)
const
441 for (VarDeclListNode *n = list; n; n = n->list)
445void VarStatementNode::streamTo(SourceStream &s)
const
447 s << SourceStream::Endl <<
"var " << list <<
";";
450void BlockNode::streamTo(SourceStream &s)
const
452 s << SourceStream::Endl <<
"{" << SourceStream::Indent
453 << source << SourceStream::Unindent << SourceStream::Endl <<
"}";
456void EmptyStatementNode::streamTo(SourceStream &s)
const
458 s << SourceStream::Endl <<
";";
461void ExprStatementNode::streamTo(SourceStream &s)
const
463 s << SourceStream::Endl << expr <<
";";
466void IfNode::streamTo(SourceStream &s)
const
468 s << SourceStream::Endl <<
"if (" << expr <<
")" << SourceStream::Indent
469 << statement1 << SourceStream::Unindent;
471 s << SourceStream::Endl <<
"else" << SourceStream::Indent
472 << statement2 << SourceStream::Unindent;
475void DoWhileNode::streamTo(SourceStream &s)
const
477 s << SourceStream::Endl <<
"do " << SourceStream::Indent
478 << statement << SourceStream::Unindent << SourceStream::Endl
479 <<
"while (" << expr <<
");";
482void WhileNode::streamTo(SourceStream &s)
const
484 s << SourceStream::Endl <<
"while (" << expr <<
")" << SourceStream::Indent
485 << statement << SourceStream::Unindent;
488void ForNode::streamTo(SourceStream &s)
const
490 s << SourceStream::Endl <<
"for ("
494 <<
")" << SourceStream::Indent << statement << SourceStream::Unindent;
497void ForInNode::streamTo(SourceStream &s)
const
499 s << SourceStream::Endl <<
"for (";
501 s <<
"var " << varDecl;
504 s <<
" in " << expr <<
")" << SourceStream::Indent
505 << statement << SourceStream::Unindent;
508void ContinueNode::streamTo(SourceStream &s)
const
510 s << SourceStream::Endl <<
"continue";
516void BreakNode::streamTo(SourceStream &s)
const
518 s << SourceStream::Endl <<
"break";
524void ReturnNode::streamTo(SourceStream &s)
const
526 s << SourceStream::Endl <<
"return";
532void WithNode::streamTo(SourceStream &s)
const
534 s << SourceStream::Endl <<
"with (" << expr <<
") "
538void CaseClauseNode::streamTo(SourceStream &s)
const
540 s << SourceStream::Endl;
542 s <<
"case " << expr;
545 s <<
":" << SourceStream::Indent;
548 s << SourceStream::Unindent;
551void ClauseListNode::streamTo(SourceStream &s)
const
553 for (
const ClauseListNode *n =
this; n; n = n->next())
557void CaseBlockNode::streamTo(SourceStream &s)
const
559 for (
const ClauseListNode *n = list1; n; n = n->next())
563 for (
const ClauseListNode *n = list2; n; n = n->next())
567void SwitchNode::streamTo(SourceStream &s)
const
569 s << SourceStream::Endl <<
"switch (" << expr <<
") {"
570 << SourceStream::Indent << block << SourceStream::Unindent
571 << SourceStream::Endl <<
"}";
574void LabelNode::streamTo(SourceStream &s)
const
576 s << SourceStream::Endl <<
label <<
":" << SourceStream::Indent
577 << statement << SourceStream::Unindent;
580void ThrowNode::streamTo(SourceStream &s)
const
582 s << SourceStream::Endl <<
"throw " << expr <<
";";
585void CatchNode::streamTo(SourceStream &s)
const
587 s << SourceStream::Endl <<
"catch (" << ident <<
")" << block;
590void FinallyNode::streamTo(SourceStream &s)
const
592 s << SourceStream::Endl <<
"finally " << block;
595void TryNode::streamTo(SourceStream &s)
const
597 s << SourceStream::Endl <<
"try " << block
602void ParameterNode::streamTo(SourceStream &s)
const
605 for (ParameterNode *n = next; n; n = n->next)
609void FuncDeclNode::streamTo(SourceStream &s)
const {
610 s << SourceStream::Endl <<
"function " << ident <<
"(";
616void FuncExprNode::streamTo(SourceStream &s)
const
618 s <<
"function " <<
"("
623void SourceElementsNode::streamTo(SourceStream &s)
const
625 for (
const SourceElementsNode *n =
this; n; n = n->elements)
Represents an Identifier for a Javascript object.
const UString & ustring() const
returns a UString of the identifier
UString substr(int pos=0, int len=-1) const
kdbgstream & operator<<(const TQValueList< T > &list)
TQString label(StdAccel id)