Artifact f4c44e7885cec8b416546198ac73025d0a6a4c4bc2b7eb459503fdfedbd1aa7f:
- File tests/grammars/lexemes/adverbs/event-name-standard/gcr_tcl — part of check-in [e5e442db2a] at 2018-04-03 20:37:49 on branch trunk — Fixed bug in the semantics' handling of :lexeme. Do not exclude the symbol from LATM fixup if the :lexeme adverbs do _not specify_ latm information. Facepalm. Found playing with lexeme events, and GC missing the crucial latm information, breaking generated test parsers. Updated tests to correct results. (user: aku size: 668) [more...]
- File tests/grammars/lexemes/adverbs/event-name-standard/gcstate — part of check-in [e5e442db2a] at 2018-04-03 20:37:49 on branch trunk — Fixed bug in the semantics' handling of :lexeme. Do not exclude the symbol from LATM fixup if the :lexeme adverbs do _not specify_ latm information. Facepalm. Found playing with lexeme events, and GC missing the crucial latm information, breaking generated test parsers. Updated tests to correct results. (user: aku size: 668)
- File tests/grammars/lexemes/adverbs/event-on-implied/gcr_tcl — part of check-in [e5e442db2a] at 2018-04-03 20:37:49 on branch trunk — Fixed bug in the semantics' handling of :lexeme. Do not exclude the symbol from LATM fixup if the :lexeme adverbs do _not specify_ latm information. Facepalm. Found playing with lexeme events, and GC missing the crucial latm information, breaking generated test parsers. Updated tests to correct results. (user: aku size: 668)
- File tests/grammars/lexemes/adverbs/event-on-implied/gcstate — part of check-in [e5e442db2a] at 2018-04-03 20:37:49 on branch trunk — Fixed bug in the semantics' handling of :lexeme. Do not exclude the symbol from LATM fixup if the :lexeme adverbs do _not specify_ latm information. Facepalm. Found playing with lexeme events, and GC missing the crucial latm information, breaking generated test parsers. Updated tests to correct results. (user: aku size: 668)
- File tests/grammars/lexemes/adverbs/event-on/gcr_tcl — part of check-in [e5e442db2a] at 2018-04-03 20:37:49 on branch trunk — Fixed bug in the semantics' handling of :lexeme. Do not exclude the symbol from LATM fixup if the :lexeme adverbs do _not specify_ latm information. Facepalm. Found playing with lexeme events, and GC missing the crucial latm information, breaking generated test parsers. Updated tests to correct results. (user: aku size: 668)
- File tests/grammars/lexemes/adverbs/event-on/gcstate — part of check-in [e5e442db2a] at 2018-04-03 20:37:49 on branch trunk — Fixed bug in the semantics' handling of :lexeme. Do not exclude the symbol from LATM fixup if the :lexeme adverbs do _not specify_ latm information. Facepalm. Found playing with lexeme events, and GC missing the crucial latm information, breaking generated test parsers. Updated tests to correct results. (user: aku size: 668)
grammar { global { start B inaccessible warn } g1 { {} { B { {priority A 0 action {array values} assoc left mask 0} } } terminal { A { terminal } } } lexeme { action {array values} } l0 { events { A { before { snafu on } } } latm { A 1 } lexeme { A { {priority @CHR:<a> 0} } } literal { @CHR:<a> { {character 97} } } } }