Deprecated construct separator
The separator construct is deprecated, so I’m getting the following warning:
Submitted by Antonio on 8 December 2015 at 17:03
Warning: Deprecated construct: Use list with separator symbol instead: {S* “separator”}
How can I change the line bellow to correct this warning?
<StructDecl+; separator=“\n”>
Issue Log
On 8 December 2015 at 17:24 Guido Wachsmuth commented:
The cryptic warning includes the solution. You should replace
<StructDecl+; separator=“\n”>
with<{StructDecl "\n"}+>
.
Log in to post comments