We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f7da96 commit 15ead35Copy full SHA for 15ead35
src/org/sugarj/IBaseProcessor.java
@@ -7,7 +7,6 @@
7
import org.sugarj.common.Environment;
8
import org.sugarj.common.errors.SourceCodeException;
9
import org.sugarj.common.path.Path;
10
-import org.sugarj.common.path.RelativePath;
11
12
/**
13
* @author seba
@@ -16,7 +15,7 @@ public interface IBaseProcessor {
16
15
17
public abstract AbstractBaseLanguage getLanguage();
18
19
- public abstract void init(RelativePath sourceFile, Environment environment);
+ public abstract void init(String modulePath, Environment environment);
20
21
public abstract void processModuleImport(IStrategoTerm toplevelDecl) throws IOException;
22
public abstract List<String> processBaseDecl(IStrategoTerm toplevelDecl) throws IOException;
0 commit comments