-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Eddie
authored and
Eddie
committed
Jun 10, 2024
1 parent
91ac078
commit ba3d55a
Showing
22 changed files
with
199 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.jungle.compiler; | ||
|
||
import org.jetbrains.annotations.NotNull; | ||
|
||
public interface ICompilerOptions { | ||
@NotNull | ||
String getClassPath(); | ||
|
||
@NotNull | ||
String getTargetPath(); | ||
} |
22 changes: 0 additions & 22 deletions
22
src/main/java/com/jungle/compiler/visitor/AbstractClassPathVisitor.java
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
src/main/java/com/jungle/compiler/visitor/AbstractVisitor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.jungle.compiler.visitor; | ||
|
||
import org.jetbrains.annotations.NotNull; | ||
|
||
import com.jungle.compiler.ICompilerOptions; | ||
|
||
public abstract class AbstractVisitor implements IVisitor { | ||
@NotNull | ||
private final ICompilerOptions options; | ||
|
||
public ICompilerOptions getCompilerOptions() { | ||
return options; | ||
} | ||
|
||
public AbstractVisitor(@NotNull ICompilerOptions options) { | ||
super(); | ||
this.options = options; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.