Example #1
0
 public void addMethods(JSHandler jsHandler)
 {
     foreach (JSMethodHandler method in jsHandler.handlers)
     {
         methods.Add(new Method(method.name, method.methodInfo));
     }
 }
Example #2
0
 public MethodParser(JSHandler jsHandler)
 {
     addMethods(jsHandler);
 }