Example #1
0
 public CallingLValueNode(LValueNode lvalue)
 {
     this.lvalue = lvalue;
 }
Example #2
0
 public ExpandLValueNode(LValueNode parent, string child)
 {
     this.parent = parent;
     this.child  = child;
 }
Example #3
0
 public ExpandLValueNode(LValueNode parent, object child)
     : this(parent, ((Lexer.Token)child).Text)
 {
 }
Example #4
0
 public FunctionDefinition(LValueNode name, List <string> parameters, Routine suite)
 {
     this.name       = name;
     this.parameters = parameters;
     this.suite      = suite;
 }
Example #5
0
 public FunctionDefinition(LValueNode name, Routine suite)
     : this(name, null, suite)
 {
 }
Example #6
0
File: IR.cs Project: nokok/lury
 public FunctionDefinition(LValueNode name, Routine suite)
     : this(name, null, suite)
 {
 }
Example #7
0
File: IR.cs Project: nokok/lury
 public FunctionDefinition(LValueNode name, List<string> parameters, Routine suite)
 {
     this.name = name;
     this.parameters = parameters;
     this.suite = suite;
 }
Example #8
0
File: IR.cs Project: nokok/lury
 public ExpandLValueNode(LValueNode parent, object child)
     : this(parent, ((Lexer.Token)child).Text)
 {
 }
Example #9
0
File: IR.cs Project: nokok/lury
 public ExpandLValueNode(LValueNode parent, string child)
 {
     this.parent = parent;
     this.child = child;
 }
Example #10
0
File: IR.cs Project: nokok/lury
 public CallingLValueNode(LValueNode lvalue)
 {
     this.lvalue = lvalue;
 }