static public Method Add(string identifier, string[] arguments, node methodNode)
            {
                SkryptMethod method = new SkryptMethod(
                    identifier,
                    //returnType,
                    arguments,
                    methodNode
                    );

                methods.Add(method);
                SKmethods.Add(method);

                return(method);
            }
 static public SkryptMethod GetSk(string name)
 {
     return(SKmethods.Find(x => x.identifier == name));
 }