diff options
Diffstat (limited to 'driver/parser')
-rw-r--r-- | driver/parser/conflict_test.go | 4 | ||||
-rw-r--r-- | driver/parser/lac_test.go | 4 | ||||
-rw-r--r-- | driver/parser/parser_test.go | 4 | ||||
-rw-r--r-- | driver/parser/semantic_action_test.go | 6 | ||||
-rw-r--r-- | driver/parser/syntax_error_test.go | 4 |
5 files changed, 11 insertions, 11 deletions
diff --git a/driver/parser/conflict_test.go b/driver/parser/conflict_test.go index 21b829a..1a75483 100644 --- a/driver/parser/conflict_test.go +++ b/driver/parser/conflict_test.go @@ -4,8 +4,8 @@ import ( "strings" "testing" - "github.com/nihei9/vartan/grammar" - "github.com/nihei9/vartan/spec/grammar/parser" + "grammar" + "spec/grammar/parser" ) func TestParserWithConflicts(t *testing.T) { diff --git a/driver/parser/lac_test.go b/driver/parser/lac_test.go index 14bd2cf..ed9a0b8 100644 --- a/driver/parser/lac_test.go +++ b/driver/parser/lac_test.go @@ -4,8 +4,8 @@ import ( "strings" "testing" - "github.com/nihei9/vartan/grammar" - "github.com/nihei9/vartan/spec/grammar/parser" + "grammar" + "spec/grammar/parser" ) func TestParserWithLAC(t *testing.T) { diff --git a/driver/parser/parser_test.go b/driver/parser/parser_test.go index b1b9e4f..cdfd922 100644 --- a/driver/parser/parser_test.go +++ b/driver/parser/parser_test.go @@ -5,8 +5,8 @@ import ( "strings" "testing" - "github.com/nihei9/vartan/grammar" - "github.com/nihei9/vartan/spec/grammar/parser" + "grammar" + "spec/grammar/parser" ) func termNode(kind string, text string, children ...*Node) *Node { diff --git a/driver/parser/semantic_action_test.go b/driver/parser/semantic_action_test.go index c98a12f..8c224e2 100644 --- a/driver/parser/semantic_action_test.go +++ b/driver/parser/semantic_action_test.go @@ -5,9 +5,9 @@ import ( "strings" "testing" - "github.com/nihei9/vartan/grammar" - spec "github.com/nihei9/vartan/spec/grammar" - "github.com/nihei9/vartan/spec/grammar/parser" + "grammar" + spec "spec/grammar" + "spec/grammar/parser" ) type testSemAct struct { diff --git a/driver/parser/syntax_error_test.go b/driver/parser/syntax_error_test.go index 71175be..c508be6 100644 --- a/driver/parser/syntax_error_test.go +++ b/driver/parser/syntax_error_test.go @@ -6,8 +6,8 @@ import ( "strings" "testing" - "github.com/nihei9/vartan/grammar" - "github.com/nihei9/vartan/spec/grammar/parser" + "grammar" + "spec/grammar/parser" ) func TestParserWithSyntaxErrors(t *testing.T) { |