comparison src/luan/impl/LuanParser.java @ 1413:514b7a62fe27

compiler bug
author Franklin Schmidt <fschmidt@gmail.com>
date Sun, 06 Oct 2019 22:23:11 -0600
parents 221eedb0f54e
children 56fb5cd8228d
comparison
equal deleted inserted replaced
1412:4ba0377afa3e 1413:514b7a62fe27
253 String className = "EXP" + classCounter.incrementAndGet(); 253 String className = "EXP" + classCounter.incrementAndGet();
254 return toFnString( top, frame.upValueSymbols, className, inners ); 254 return toFnString( top, frame.upValueSymbols, className, inners );
255 } 255 }
256 256
257 void GetRequiredModule() throws ParseException { 257 void GetRequiredModule() throws ParseException {
258 Spaces(); 258 //Spaces();
259 parser.begin(); 259 parser.begin();
260 frame.isVarArg = true; 260 frame.isVarArg = true;
261 top.add( "final Object[] varArgs = LuanImpl.varArgs(args,0); " ); 261 top.add( "final Object[] varArgs = LuanImpl.varArgs(args,0); " );
262 Stmts block = RequiredBlock(); 262 Stmts block = RequiredBlock();
263 top.addAll( block ); 263 top.addAll( block );