EOS 2  1.1.0
Einfache Objektbasierte Sprache
CompilerListener.java
gehe zur Dokumentation dieser Datei
1 package de.lathanda.eos.baseparser;
2 
3 import java.util.LinkedList;
4 
5 import de.lathanda.eos.vm.ErrorInformation;
6 
13 public interface CompilerListener {
14  void compileComplete(LinkedList<ErrorInformation> errors, AbstractProgram program);
15 }
void compileComplete(LinkedList< ErrorInformation > errors, AbstractProgram program)
Impressum