Closed willfaught closed 2 years ago
https://github.com/pboyer/antlr4/blob/master/tool/resources/org/antlr/v4/tool/templates/codegen/Go/Go.stg#L1279
What is this doing? It looks like it results in something like $x = $y.$x, which is invalid Go syntax.
$x = $y.$x
Is this code that's inlined in the grammar productions?
https://github.com/pboyer/antlr4/blob/master/tool/resources/org/antlr/v4/tool/templates/codegen/Go/Go.stg#L1279
What is this doing? It looks like it results in something like
$x = $y.$x
, which is invalid Go syntax.