Skip to content

Commit b94f1c7

Browse files
committed
Removed StringSourceTree property since it can be constructed on demand if needed.
1 parent 6c12138 commit b94f1c7

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Utilities/Grammar/Analyzer.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,6 @@ public class Analyzer
7171
/// <value>The parser context.</value>
7272
public ParserRuleContext ParserContext { get; private set; }
7373

74-
/// <summary>
75-
/// Gets a Lisp-style parse tree.
76-
/// </summary>
77-
/// <value>The string source tree.</value>
78-
public string StringSourceTree { get; private set; }
79-
8074
/// <summary>
8175
/// Gets a value indicating whether this instance is parsed.
8276
/// </summary>
@@ -128,6 +122,7 @@ public IList<IToken> Tokenize([NotNull] GrammarReference grammar, [NotNull] stri
128122
/// <exception cref="ArgumentNullException">inputText is <see langword="null" /></exception>
129123
/// <exception cref="GrammarException">No parser found for grammar \"{grammar.GrammarName}\"</exception>
130124
/// <exception cref="ArgumentNullException">No parser found for specified grammar.</exception>
125+
// ReSharper disable once FlagArgument
131126
public Parser BuildParserWithOptions([NotNull] GrammarReference grammar, [NotNull] string inputText, ParseOption option, IAntlrErrorListener<int> lexerErrorListener)
132127
{
133128
if (grammar is null)

0 commit comments

Comments
 (0)