The class has access to the current {@link IJSEmitter} instance being used tooutput source code to the current output buffer. @author Michael Schmalle
8990919293949596979899
{ ASBlockWalker walker = new ASBlockWalker(errors, project, emitter); BeforeAfterStrategy strategy = new BeforeAfterStrategy( new ASNodeSwitch(walker), new ASBeforeNodeStrategy(emitter), new ASAfterNodeStrategy(emitter)); walker.setStrategy(strategy); return walker; }
9293949596979899100101102