func github.com/aws/aws-sdk-go/internal/ini.NewParseError
30 uses
github.com/aws/aws-sdk-go/internal/ini (current package)
ini_parser.go#L196: return nil, NewParseError(
ini_parser.go#L231: return nil, NewParseError(
ini_parser.go#L251: return nil, NewParseError("expected '['")
ini_parser.go#L265: return nil, NewParseError("expected ']'")
ini_parser.go#L287: return nil, NewParseError(
ini_parser.go#L314: return nil, NewParseError(
ini_parser.go#L326: return nil, NewParseError(fmt.Sprintf("incomplete ini expression"))
newline_token.go#L26: return emptyToken, 0, NewParseError("invalid new line token")
number_helper.go#L40: return NewParseError(fmt.Sprintf("multiple number formats: 0%v", string(c)))
number_helper.go#L61: return NewParseError(fmt.Sprintf("invalid number character: %v", string(c)))
op_tokens.go#L36: return tok, 0, NewParseError(fmt.Sprintf("unexpected op type, %v", b[0]))
parse_error.go#L19: func NewParseError(message string) *ParseError {
sep_tokens.go#L38: return tok, 0, NewParseError(fmt.Sprintf("unexpected sep type, %v", b[0]))
value_util.go#L13: return 0, NewParseError("strings must start with '\"'")
value_util.go#L38: return 0, NewParseError("missing '\"' in string value")
value_util.go#L51: return 0, NewParseError("invalid boolean value")
value_util.go#L66: return 0, NewParseError("invalid boolean value")
value_util.go#L79: return 0, 0, NewParseError("invalid digit value")
value_util.go#L93: return 0, 0, NewParseError("parse error '-'")
value_util.go#L117: return 0, 0, NewParseError("incorrect base format, expected leading '0'")
value_util.go#L121: return 0, 0, NewParseError(fmt.Sprintf("incorrect base format found %s at %d index", string(b[i]), i))
value_util.go#L138: return 0, 0, NewParseError("invalid numerical character")
value_util.go#L140: return 0, 0, NewParseError("invalid numerical character")
value_util.go#L265: return b, NewParseError(fmt.Sprintf("invalid escaped character %c", b))
visitor.go#L48: return NewParseError("unexpected token type")
visitor.go#L54: return NewParseError("unexpected token type")
visitor.go#L65: return NewParseError(fmt.Sprintf("unsupported expression %v", expr))
visitor.go#L68: return NewParseError(fmt.Sprintf("unsupported expression %v", expr))
visitor.go#L81: return NewParseError(fmt.Sprintf("unsupported child statement: %T", child))
visitor.go#L88: return NewParseError(fmt.Sprintf("unsupported statement: %s", stmt.Kind))
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |