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);
        }