Example #1
0
 public Assertion(ASTNode from) : base(from)
 {
 }
Example #2
0
 public ASTNode(ASTNode from)
 {
     this.line     = from.line;
     this.position = from.position;
     children      = new List <ASTNode>();
 }
Example #3
0
 public Read(ASTNode from) : base(from)
 {
 }
Example #4
0
 public Print(ASTNode from) : base(from)
 {
 }
Example #5
0
 public Assign(ASTNode from) : base(from)
 {
 }
Example #6
0
 public For(ASTNode from) : base(from)
 {
 }
Example #7
0
 public BoolValue(ASTNode from, bool value) : base(from)
 {
     this.value = value;
     type       = typeof(bool);
 }
Example #8
0
 public Variable(ASTNode from, String name) : base(from)
 {
     this.name = name;
 }
Example #9
0
 public StringValue(ASTNode from, String value) : base(from)
 {
     this.value = value;
     type       = typeof(String);
 }
Example #10
0
 public BoolValue(ASTNode from) : base(from)
 {
 }
Example #11
0
 public StringValue(ASTNode from) : base(from)
 {
 }
Example #12
0
 public IntValue(ASTNode from, int value) : base(from)
 {
     this.value = value;
     type       = typeof(int);
 }
Example #13
0
 public IntValue(ASTNode from) : base(from)
 {
 }
Example #14
0
 public Expression(ASTNode from) : base(from)
 {
 }
Example #15
0
 public Define(ASTNode from) : base(from)
 {
 }
Example #16
0
 public OperatorCall(ASTNode from) : base(from)
 {
 }
Example #17
0
 public Variable(ASTNode from) : base(from)
 {
 }