Пример #1
0
 public Function_ctor(Context context)
     : base(context, null)
 {
     Function_prototype = new Function_prototype(context);
     Put("prototype", Function_prototype);
 }
Пример #2
0
 protected Function_ctor(Context context)
 {
     Context = context;
     Function_prototype = new Function_prototype(context);
     Put("prototype", Function_prototype);
 }