
I am writing a custom parser. The Lexical parser is passed a text range and determines the tokens and adds them to the token stream. The Semantic parser is passed a textReader and it appears that it is expected to create a lexical Parser and re-parse the text from the beginning. Is this correct or is the previously parsed token list available to the semantic parser through some property?
Thanks.
Thanks.