Details
Description
The real problem is actually that the parser does nothing with static
// Import statement
import: IMPORT fullidentifier SEMI { builder.addImport($2); }
| IMPORT STATIC fullidentifier SEMI { builder.addImport($3); };
Here the static gets lost and there's no way to recover it afterwards.
Fixed in rev. 1063