Antlr4.Runtime.Tree.Xpath.XPath.XPath C# (CSharp) 메소드

XPath() 공개 메소드

public XPath ( Parser parser, string path ) : System
parser Parser
path string
리턴 System
        public XPath(Parser parser, string path)
        {
            // word not operator/separator
            // word for invert operator
            this.parser = parser;
            this.path = path;
            elements = Split(path);
        }