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