diff options
author | Ryo Nihei <nihei.dev@gmail.com> | 2022-03-28 00:09:17 +0900 |
---|---|---|
committer | Ryo Nihei <nihei.dev@gmail.com> | 2022-03-28 00:09:17 +0900 |
commit | bb9bf495bd6cee65d8bc821939051d1be99861cc (patch) | |
tree | a782616a4a4faee834a08bded1451c298596d5b2 /spec/syntax_error.go | |
parent | Use golangci-lint (diff) | |
download | cotia-bb9bf495bd6cee65d8bc821939051d1be99861cc.tar.gz cotia-bb9bf495bd6cee65d8bc821939051d1be99861cc.tar.xz |
Follow golangci-lint
Diffstat (limited to 'spec/syntax_error.go')
-rw-r--r-- | spec/syntax_error.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/spec/syntax_error.go b/spec/syntax_error.go index f82186a..a35a90c 100644 --- a/spec/syntax_error.go +++ b/spec/syntax_error.go @@ -19,7 +19,6 @@ var ( synErrAutoGenID = newSyntaxError("you cannot define an identifier beginning with an underscore") synErrUnclosedTerminal = newSyntaxError("unclosed terminal") synErrUnclosedString = newSyntaxError("unclosed string") - synErrInvalidEscSeq = newSyntaxError("invalid escape sequence") synErrIncompletedEscSeq = newSyntaxError("incompleted escape sequence; unexpected EOF following a backslash") synErrEmptyPattern = newSyntaxError("a pattern must include at least one character") synErrEmptyString = newSyntaxError("a string must include at least one character") |