aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/syntax/scanner.go
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2016-12-02 16:22:45 -0800
committerRobert Griesemer <gri@golang.org>2016-12-09 01:35:23 +0000
commit4b8895e2ddb8b9aa324417a0d01e6c09c9822e75 (patch)
treeffd1484c50b28a9b20f0f05da6360d65abd56be9 /src/cmd/compile/internal/syntax/scanner.go
parent3d5df64b3fe16757c9f271c2421715ba6d79b02d (diff)
downloadgo-4b8895e2ddb8b9aa324417a0d01e6c09c9822e75.tar.gz
go-4b8895e2ddb8b9aa324417a0d01e6c09c9822e75.zip
[dev.inline] cmd/compile/internal/syntax: remove gcCompat uses in scanner
- make the scanner unconditionally gc compatible - consistently use "invalid" instead "illegal" in errors Reviewed in and cherry-picked from https://go-review.googlesource.com/#/c/33896/. Change-Id: I4c4253e7392f3311b0d838bbe503576c9469b203 Reviewed-on: https://go-review.googlesource.com/34237 Run-TryBot: Robert Griesemer <gri@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
Diffstat (limited to 'src/cmd/compile/internal/syntax/scanner.go')
-rw-r--r--src/cmd/compile/internal/syntax/scanner.go48
1 files changed, 21 insertions, 27 deletions
diff --git a/src/cmd/compile/internal/syntax/scanner.go b/src/cmd/compile/internal/syntax/scanner.go
index 8af2f1ce14..149827b21c 100644
--- a/src/cmd/compile/internal/syntax/scanner.go
+++ b/src/cmd/compile/internal/syntax/scanner.go
@@ -21,9 +21,8 @@ import (
type scanner struct {
source
- pragh func(line, col uint, msg string)
- gcCompat bool // TODO(gri) remove this eventually (only here so we can build w/o parser)
- nlsemi bool // if set '\n' and EOF translate to ';'
+ pragh func(line, col uint, msg string)
+ nlsemi bool // if set '\n' and EOF translate to ';'
// current token, valid after calling next()
line, col uint
@@ -34,10 +33,9 @@ type scanner struct {
prec int // valid if tok is _Operator, _AssignOp, or _IncOp
}
-func (s *scanner) init(src io.Reader, errh, pragh func(line, col uint, msg string), gcCompat bool) {
+func (s *scanner) init(src io.Reader, errh, pragh func(line, col uint, msg string)) {
s.source.init(src, errh)
s.pragh = pragh
- s.gcCompat = gcCompat
s.nlsemi = false
}
@@ -67,7 +65,7 @@ redo:
// token start
s.line, s.col = s.source.line0, s.source.col0
- if isLetter(c) || c >= utf8.RuneSelf && (unicode.IsLetter(c) || s.isCompatRune(c, true)) {
+ if isLetter(c) || c >= utf8.RuneSelf && s.isIdentRune(c, true) {
s.ident()
return
}
@@ -290,7 +288,7 @@ redo:
default:
s.tok = 0
- s.error(fmt.Sprintf("illegal character %#U", c))
+ s.error(fmt.Sprintf("invalid character %#U", c))
goto redo
}
@@ -324,7 +322,7 @@ func (s *scanner) ident() {
// general case
if c >= utf8.RuneSelf {
- for unicode.IsLetter(c) || c == '_' || unicode.IsDigit(c) || s.isCompatRune(c, false) {
+ for s.isIdentRune(c, false) {
c = s.getr()
}
}
@@ -346,14 +344,18 @@ func (s *scanner) ident() {
s.tok = _Name
}
-func (s *scanner) isCompatRune(c rune, start bool) bool {
- if !s.gcCompat || c < utf8.RuneSelf {
- return false
- }
- if start && unicode.IsNumber(c) {
- s.error(fmt.Sprintf("identifier cannot begin with digit %#U", c))
- } else {
+func (s *scanner) isIdentRune(c rune, first bool) bool {
+ switch {
+ case unicode.IsLetter(c) || c == '_':
+ // ok
+ case unicode.IsDigit(c):
+ if first {
+ s.error(fmt.Sprintf("identifier cannot begin with digit %#U", c))
+ }
+ case c >= utf8.RuneSelf:
s.error(fmt.Sprintf("invalid identifier character %#U", c))
+ default:
+ return false
}
return true
}
@@ -643,19 +645,11 @@ func (s *scanner) escape(quote rune) bool {
if c < 0 {
return true // complain in caller about EOF
}
- if s.gcCompat {
- name := "hex"
- if base == 8 {
- name = "octal"
- }
- s.error(fmt.Sprintf("non-%s character in escape sequence: %c", name, c))
- } else {
- if c != quote {
- s.error(fmt.Sprintf("illegal character %#U in escape sequence", c))
- } else {
- s.error("escape sequence incomplete")
- }
+ kind := "hex"
+ if base == 8 {
+ kind = "octal"
}
+ s.error(fmt.Sprintf("non-%s character in escape sequence: %c", kind, c))
s.ungetr()
return false
}