aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/compile/internal/syntax/testing.go
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2021-04-05 15:48:32 -0700
committerRobert Griesemer <gri@golang.org>2021-04-07 05:19:29 +0000
commit8f1099b5850747cf61738606f6a3d1386f4458c6 (patch)
tree15929d236805b05affbb0829e401d3e3bbcb0354 /src/cmd/compile/internal/syntax/testing.go
parent1395432f2330498c8e5661c14652996894f0cc7d (diff)
downloadgo-8f1099b5850747cf61738606f6a3d1386f4458c6.tar.gz
go-8f1099b5850747cf61738606f6a3d1386f4458c6.zip
cmd/compile/internal/syntax, types2: move cmpPos to pos.Cmp
Make position comparison generally available. Change-Id: I94b6f658fa19a15b30574dbb2181879115c131a8 Reviewed-on: https://go-review.googlesource.com/c/go/+/307215 Trust: Robert Griesemer <gri@golang.org> Reviewed-by: Robert Findley <rfindley@google.com>
Diffstat (limited to 'src/cmd/compile/internal/syntax/testing.go')
-rw-r--r--src/cmd/compile/internal/syntax/testing.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cmd/compile/internal/syntax/testing.go b/src/cmd/compile/internal/syntax/testing.go
index 3e02dc1c5d..6a97dc0c2a 100644
--- a/src/cmd/compile/internal/syntax/testing.go
+++ b/src/cmd/compile/internal/syntax/testing.go
@@ -33,10 +33,10 @@ var errRx = regexp.MustCompile(`^ *ERROR *"?([^"]*)"?`)
// for each Error is the position of the token immediately preceding
// the comment, the Error message is the message msg extracted from
// the comment, with all errors that are on the same line collected
-// in a slice. If there is no preceding token (the `ERROR` comment
-// appears in the beginning of the file), then the recorded position
-// is unknown (line, col = 0, 0). If there are no ERROR comments, the
-// result is nil.
+// in a slice, in source order. If there is no preceding token (the
+// `ERROR` comment appears in the beginning of the file), then the
+// recorded position is unknown (line, col = 0, 0). If there are no
+// ERROR comments, the result is nil.
func ErrorMap(src io.Reader) (errmap map[uint][]Error) {
// position of previous token
var base *PosBase