Skip to content
Snippets Groups Projects
Commit ed4a71fc authored by Hugo Hörnquist's avatar Hugo Hörnquist
Browse files

Greatly limit the debug verbosity when parsing strings.

Previously, all possible parse instances of a string were shown, which
included the unquoted, single quoted, and double quoted versions,
meaning that "always" was shown as:

    string(([ws] & ('always'
		    | ("'" & ['a', 'l', 'w', 'a', 'y', 's'] & "'")
		    | ('"' & [rich_char(c='a'), rich_char(c='l'), rich_char(c='w'), rich_char(c='a'), rich_char(c='y'), rich_char(c='s')] & '"'))))

This changes the output to:

    string([frequency])
parent f4142f65
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment