The separator construct is deprecated, so I’m getting the following warning:
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”>

Submitted by Antonio on 8 December 2015 at 17:03

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