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