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

CompileClassMethod() public method

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