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