aboutsummaryrefslogtreecommitdiff
path: root/driver/syntax_error_test.go
diff options
context:
space:
mode:
authorRyo Nihei <nihei.dev@gmail.com>2022-11-05 14:21:13 +0900
committerRyo Nihei <nihei.dev@gmail.com>2022-11-05 14:21:13 +0900
commitb24f61a465d21af404ed647a977160042017e601 (patch)
tree0b695a6775ed6a0a7bb41404b598055855417673 /driver/syntax_error_test.go
parentUpdate README (diff)
downloadcotia-b24f61a465d21af404ed647a977160042017e601.tar.gz
cotia-b24f61a465d21af404ed647a977160042017e601.tar.xz
Remove alias system
Remove unimportant features to tidy up the specification.
Diffstat (limited to 'driver/syntax_error_test.go')
-rw-r--r--driver/syntax_error_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/syntax_error_test.go b/driver/syntax_error_test.go
index f68f595..ada1fb0 100644
--- a/driver/syntax_error_test.go
+++ b/driver/syntax_error_test.go
@@ -242,7 +242,7 @@ foo
},
},
{
- caption: "when an anonymous symbol is expected, an expected symbol list contains an alias of the anonymous symbol",
+ caption: "when an anonymous symbol is expected, an expected symbol list contains an auto-generated name with the prefix `x_`",
specSrc: `
#name test;
@@ -256,7 +256,7 @@ foo
src: `foobaz`,
cause: `baz`,
expected: []string{
- "bar",
+ "x_1",
},
},
}