119120121122123124125126127128129
*/ @Override public Unit script(String file) { chewEols(); ModuleDecl module = module(); if (null == module) module = ModuleDecl.DEFAULT; chewEols();
854855856857858859860
if (match(Token.Kind.EOL) == null) { addError("Expected newline after module declaration", tokens.get(i - 1)); throw new LoopCompileException(); } return new ModuleDecl(modules).sourceLocation(module); }