glob
glob copied to clipboard
Fixed vet error 'syntax/ast/parser.go:86: unreachable code'
This PR removes an unreachable line of code that is flagged by go tool vet .:
$ go tool vet .
syntax/ast/parser.go:86: unreachable code
Personally, I prefer the catch-all return statement and I think it's annoying that vet doesn't like it, but in any case, this PR removes that line since the switch...default(return) makes it unreachable, and therefore untestable.