-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GH-556 Rename pipeline to parser pool and improve stage api by stage …
…service
- Loading branch information
Showing
85 changed files
with
974 additions
and
1,325 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
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
27 changes: 27 additions & 0 deletions
27
panda-framework/src/main/java/org/panda_lang/language/interpreter/parser/ContextCreator.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,27 @@ | ||
package org.panda_lang.language.interpreter.parser; | ||
|
||
import org.panda_lang.language.architecture.Script; | ||
import org.panda_lang.language.architecture.module.Imports; | ||
import org.panda_lang.language.architecture.statement.Scope; | ||
import org.panda_lang.language.interpreter.token.Snippet; | ||
import org.panda_lang.language.interpreter.token.SourceStream; | ||
|
||
public interface ContextCreator<T> extends Contextual<T> { | ||
|
||
ContextCreator<T> fork(); | ||
|
||
ContextCreator<T> withSubject(T subject); | ||
|
||
ContextCreator<T> withStream(SourceStream stream); | ||
|
||
ContextCreator<T> withSource(Snippet source); | ||
|
||
ContextCreator<T> withScope(Scope scope); | ||
|
||
ContextCreator<T> withImports(Imports imports); | ||
|
||
ContextCreator<T> withScriptSource(Snippet scriptSource); | ||
|
||
ContextCreator<T> withScript(Script script); | ||
|
||
} |
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
97 changes: 0 additions & 97 deletions
97
panda-framework/src/main/java/org/panda_lang/language/interpreter/parser/LocalChannel.java
This file was deleted.
Oops, something went wrong.
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.