]> Cypherpunks repositories - gostls13.git/commitdiff
regexp/syntax: make Op an fmt.Stringer
authorDaniel Martí <mvdan@mvdan.cc>
Tue, 20 Feb 2018 09:55:28 +0000 (09:55 +0000)
committerDaniel Martí <mvdan@mvdan.cc>
Tue, 20 Feb 2018 15:33:50 +0000 (15:33 +0000)
Using stringer.

Fixes #22684.

Change-Id: I62fbde5dcb337cf269686615616bd39a27491ac1
Reviewed-on: https://go-review.googlesource.com/95355
Run-TryBot: Daniel Martí <mvdan@mvdan.cc>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/regexp/syntax/op_string.go [new file with mode: 0644]
src/regexp/syntax/regexp.go

diff --git a/src/regexp/syntax/op_string.go b/src/regexp/syntax/op_string.go
new file mode 100644 (file)
index 0000000..3952b2b
--- /dev/null
@@ -0,0 +1,26 @@
+// Code generated by "stringer -type Op -trimprefix Op"; DO NOT EDIT.
+
+package syntax
+
+import "strconv"
+
+const (
+       _Op_name_0 = "NoMatchEmptyMatchLiteralCharClassAnyCharNotNLAnyCharBeginLineEndLineBeginTextEndTextWordBoundaryNoWordBoundaryCaptureStarPlusQuestRepeatConcatAlternate"
+       _Op_name_1 = "opPseudo"
+)
+
+var (
+       _Op_index_0 = [...]uint8{0, 7, 17, 24, 33, 45, 52, 61, 68, 77, 84, 96, 110, 117, 121, 125, 130, 136, 142, 151}
+)
+
+func (i Op) String() string {
+       switch {
+       case 1 <= i && i <= 19:
+               i -= 1
+               return _Op_name_0[_Op_index_0[i]:_Op_index_0[i+1]]
+       case i == 128:
+               return _Op_name_1
+       default:
+               return "Op(" + strconv.FormatInt(int64(i), 10) + ")"
+       }
+}
index 0fe9269f255541ba1d8e16dd05a24780c1c10083..7b703f22e25794712ea1a3e7624aaad70b6fb690 100644 (file)
@@ -27,6 +27,8 @@ type Regexp struct {
        Name     string     // capturing name, for OpCapture
 }
 
+//go:generate stringer -type Op -trimprefix Op
+
 // An Op is a single regular expression operator.
 type Op uint8