AjTalk.Compiler.SimpleCompiler.CompileInstanceMethod C# (CSharp) Метод

CompileInstanceMethod() публичный Метод

public CompileInstanceMethod ( string text, IBehavior cls ) : Method
text string
cls IBehavior
Результат AjTalk.Language.Method
        public Method CompileInstanceMethod(string text, IBehavior cls)
        {
            Parser parser = new Parser(text);
            return parser.CompileInstanceMethod(cls);
        }