Fixed imports (whoops)

This commit is contained in:
Nocturn9x 2022-01-31 15:18:06 +01:00
parent 776a2241f7
commit 8ed3cc7550
3 changed files with 8 additions and 7 deletions

View File

@ -33,6 +33,7 @@ type
Parser* = ref object
## A recursive-descent top-down
## parser implementation
# Index into self.tokens
current: int
# The name of the file being parsed.

View File

@ -13,11 +13,11 @@
# limitations under the License.
## Test module to wire up JAPL components
import backend/lexer
import backend/parser
import backend/optimizer
import backend/compiler
import backend/serializer
import frontend/lexer
import frontend/parser
import frontend/optimizer
import frontend/compiler
import frontend/serializer
import util/debugger

View File

@ -12,8 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import ../backend/meta/bytecode
import ../backend/meta/ast
import ../frontend/meta/bytecode
import ../frontend/meta/ast
import multibyte