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