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