AjTalk.Compiler.SimpleCompiler.CompileInstanceMethod C# (CSharp) Method

CompileInstanceMethod() public method

public CompileInstanceMethod ( string text, IBehavior cls ) : Method
text string
cls IBehavior
return AjTalk.Language.Method
        public Method CompileInstanceMethod(string text, IBehavior cls)
        {
            Parser parser = new Parser(text);
            return parser.CompileInstanceMethod(cls);
        }