This PR improves the validation of new syntactic tokens. Previously, the validation code had inconsistencies: some atoms would be accepted only if they had a leading space as a pretty printer hint. Additionally, atoms with internal whitespace are no longer allowed. Closes #6011
8 lines
158 B
Text
8 lines
158 B
Text
syntax "0" : term
|
|
syntax "'a'" : term
|
|
syntax "`a" : term
|
|
syntax "\"a" : term
|
|
syntax " 0" : term
|
|
syntax " 'a'" : term
|
|
syntax " `a" : term
|
|
syntax " \"a" : term
|