예제 #1
0
파일: Syntax.cs 프로젝트: Throttle/compiler
 /// <summary>
 /// Конструктор
 /// </summary>
 public Function(Body body, ParameterCollection parameters, string name, Type type)
 {
     Body = body; Parameters = parameters; Name = name; Type = type;
 }
예제 #2
0
 public Enumerator(ParameterCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }