Exemplo n.º 1
0
 public Function(FunctionPrototype proto, StatementList statements)
 {
     Statements = statements;
     Prototype = proto;
 }
Exemplo n.º 2
0
 public ExternFunction(FunctionPrototype proto, CalculateDelegate3 func)
     : base(proto, null)
 {
     count = 3;
     function3 = func;
 }
Exemplo n.º 3
0
 public Function(StatementList statements)
 {
     Prototype = new FunctionPrototype("", new string[0]);
     Statements = statements;
 }
Exemplo n.º 4
0
 public ExternFunction(FunctionPrototype proto, CalculateDelegate1 func)
     : base(proto, null)
 {
     function1 = func;
     count = 1;
 }