fItemPlugin.ItemRules.Core.Parser.Parse C# (CSharp) 메소드

Parse() 공개 메소드

public Parse ( string input ) : ParseTree
input string
리턴 ParseTree
        public ParseTree Parse(string input)
        {
            tree = new ParseTree();
            return Parse(input, tree);
        }

Same methods

Parser::Parse ( string input, ParseTree tree ) : ParseTree