type regexp/syntax.ErrorCode
19 uses
regexp/syntax (current package)
parse.go#L17: Code ErrorCode
parse.go#L26: type ErrorCode string
parse.go#L30: ErrInternalError ErrorCode = "regexp/syntax: internal error"
parse.go#L33: ErrInvalidCharClass ErrorCode = "invalid character class"
parse.go#L34: ErrInvalidCharRange ErrorCode = "invalid character class range"
parse.go#L35: ErrInvalidEscape ErrorCode = "invalid escape sequence"
parse.go#L36: ErrInvalidNamedCapture ErrorCode = "invalid named capture"
parse.go#L37: ErrInvalidPerlOp ErrorCode = "invalid or unsupported Perl syntax"
parse.go#L38: ErrInvalidRepeatOp ErrorCode = "invalid nested repetition operator"
parse.go#L39: ErrInvalidRepeatSize ErrorCode = "invalid repeat count"
parse.go#L40: ErrInvalidUTF8 ErrorCode = "invalid UTF-8"
parse.go#L41: ErrMissingBracket ErrorCode = "missing closing ]"
parse.go#L42: ErrMissingParen ErrorCode = "missing closing )"
parse.go#L43: ErrMissingRepeatArgument ErrorCode = "missing argument to repetition operator"
parse.go#L44: ErrTrailingBackslash ErrorCode = "trailing backslash at end of expression"
parse.go#L45: ErrUnexpectedParen ErrorCode = "unexpected )"
parse.go#L46: ErrNestingDepth ErrorCode = "expression nests too deeply"
parse.go#L47: ErrLarge ErrorCode = "expression too large"
parse.go#L50: func (e ErrorCode) String() string {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |