Пример #1
0
 public Function(FunctionPrototype proto, StatementList statements)
 {
     Statements = statements;
     Prototype = proto;
 }
Пример #2
0
 public ExternFunction(FunctionPrototype proto, CalculateDelegate3 func)
     : base(proto, null)
 {
     count = 3;
     function3 = func;
 }
Пример #3
0
 public Function(StatementList statements)
 {
     Prototype = new FunctionPrototype("", new string[0]);
     Statements = statements;
 }
Пример #4
0
 public ExternFunction(FunctionPrototype proto, CalculateDelegate1 func)
     : base(proto, null)
 {
     function1 = func;
     count = 1;
 }