diff options
author | EuAndreh <eu@euandre.org> | 2024-12-02 15:41:30 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-12-02 15:41:30 -0300 |
commit | ab1ad9eecffed26c4aa3d6fd346d7b06e9eadbb1 (patch) | |
tree | 8e15b7188b153d8f85be7120f5370249286b6f17 /spec/grammar | |
parent | Setup Makefile project structure with empty src/urubu.go source (diff) | |
download | cotia-ab1ad9eecffed26c4aa3d6fd346d7b06e9eadbb1.tar.gz cotia-ab1ad9eecffed26c4aa3d6fd346d7b06e9eadbb1.tar.xz |
Build and test existing code as is
Diffstat (limited to 'spec/grammar')
-rw-r--r-- | spec/grammar/parser/lexer.go | 2 | ||||
-rw-r--r-- | spec/grammar/parser/parser.go | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/spec/grammar/parser/lexer.go b/spec/grammar/parser/lexer.go index 1096ae9..31dcab2 100644 --- a/spec/grammar/parser/lexer.go +++ b/spec/grammar/parser/lexer.go @@ -10,7 +10,7 @@ import ( "regexp" "strings" - verr "github.com/nihei9/vartan/error" + verr "error" ) type tokenKind string diff --git a/spec/grammar/parser/parser.go b/spec/grammar/parser/parser.go index c0179a6..0ef29dd 100644 --- a/spec/grammar/parser/parser.go +++ b/spec/grammar/parser/parser.go @@ -4,8 +4,8 @@ import ( "fmt" "io" - verr "github.com/nihei9/vartan/error" - spec "github.com/nihei9/vartan/spec/grammar" + verr "error" + spec "spec/grammar" ) type RootNode struct { |