Inheritance: GenericJsBasicNode
Example #1
0
 public PrintStmtNode(AstNodeArgs args)
     : base(args)
 {
     _exprList = (ExprListNode)args.ChildNodes[1];
 }
Example #2
0
 public InputStmtNode(AstNodeArgs args)
     : base(args)
 {
     _toPrint = (ExprListNode)args.ChildNodes[1];
     _variable = (Token)args.ChildNodes[2];
 }
Example #3
0
 public InputStmtNode(AstNodeArgs args)
     : base(args)
 {
     _toPrint  = (ExprListNode)args.ChildNodes[1];
     _variable = (Token)args.ChildNodes[2];
 }
Example #4
0
 public PrintStmtNode(AstNodeArgs args)
     : base(args)
 {
     _exprList = (ExprListNode)args.ChildNodes[1];
 }