Пример #1
0
 public Function_Path(Function f, PathResolver p) : base(p.GetInputType(), f.GetReturnType(), f.GetParameters())
 {
     function      = f;
     path_resolver = p;
 }
Пример #2
0
 public Variable_Path(Variable v, PathResolver p) : base(p.GetInputType(), v.GetVariableType())
 {
     variable      = v;
     path_resolver = p;
 }
Пример #3
0
 public Hook_Path(Hook v, PathResolver p) : base(p.GetInputType(), v.GetHookType())
 {
     hook          = v;
     path_resolver = p;
 }