Rework parsing structure
This commit is contained in:
parent
a4ec29f084
commit
b9f419a59d
17 changed files with 246 additions and 278 deletions
9
src/parser/ReplParser.kt
Normal file
9
src/parser/ReplParser.kt
Normal file
|
@ -0,0 +1,9 @@
|
|||
package parser
|
||||
|
||||
import prolog.builtins.Query
|
||||
|
||||
class ReplParser: Parser {
|
||||
override fun parse(input: String): Query {
|
||||
TODO("Not yet implemented")
|
||||
}
|
||||
}
|
Reference in a new issue