Initial commit of main compiler sources (or should I say ... SAUCES!)
This commit is contained in:
10
slangc/api/Reporter.sauce
Normal file
10
slangc/api/Reporter.sauce
Normal file
@ -0,0 +1,10 @@
|
||||
package slangc.api;
|
||||
|
||||
public interface Reporter {
|
||||
public void note(String topic, String text);
|
||||
public void loadingSource(String filename, boolean included);
|
||||
public void loadingFile(String filename, boolean included);
|
||||
public void loadingReferencedSet(String filename);
|
||||
public void finishedLoading(int referencedSources, int referencedFiles, int referencedSets, int includedSources, int includedFiles);
|
||||
|
||||
}
|
Reference in New Issue
Block a user