public IList<Babel.Method> FindMethods(object result, int line, int col, string name)
        {
            Babel.Method m = new Method();
            m.Name = "DUMMYNAME";

            return new List<Babel.Method>(){m};
        }
Esempio n. 2
0
 private static List<Method> MakeMultipleOption(Method[] methods)
 {
     return new List<Method>(methods);
 }