Skip to content

Commit

Permalink
move compiler.tokenizer to compiler.token.tokenizer
Browse files Browse the repository at this point in the history
  • Loading branch information
StunxFS committed Dec 26, 2024
1 parent 249d016 commit 847c1af
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions compiler/parser/mod.v
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
module parser

import compiler.ast
import compiler.token
import compiler.context
import compiler.tokenizer
import compiler.token
import compiler.token.tokenizer

pub struct Parser {
mut:
Expand Down
7 changes: 7 additions & 0 deletions compiler/sema/mod.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// Copyright (C) 2024-present The Rivet programming language. Use of this source code
// is governed by an MIT license that can be found in the LICENSE file.

module sema

pub struct Sema {
}
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Copyright (C) 2024-present The Rivet programming language. Use of this source code
// is governed by an MIT license that can be found in the LICENSE file.
import compiler.context
import compiler.tokenizer
import compiler.token
import compiler.token.tokenizer

struct ExpectedToken {
kind token.Kind
Expand Down
File renamed without changes.

0 comments on commit 847c1af

Please sign in to comment.