mirror of
https://github.com/golang/go
synced 2024-11-02 09:28:34 +00:00
b569b87ca1
This is a translation of the yacc-based parser with adjustements to make the grammar work for a recursive-descent parser followed by cleanups and simplifications. The yacc actions were mostly literally copied for correctness with better temporary names. A few of the syntax tests were adjusted for slightly different error messages (it is very difficult to match the yacc-based error messages in all cases, and sometimes the new parser could produce better errors). The new parser is enabled by default. To switch back to the yacc-based parser, set -oldparser. To hardwire the switch back, uncomment "oldparser = 1" in lex.go. - passes all.bash - ~18% reduced parse time per file on average for make.bash - ~3% reduced compile time for building cmd/compile Change-Id: Icb5651bb9d8b9f66261762d2c94a03793050d4ce Reviewed-on: https://go-review.googlesource.com/16665 Run-TryBot: Robert Griesemer <gri@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Russ Cox <rsc@golang.org>
17 lines
493 B
Go
17 lines
493 B
Go
// errorcheck
|
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
type xyz struct {
|
|
ch chan
|
|
} // ERROR "unexpected .*}.* in channel type|missing channel element type"
|
|
|
|
func Foo(y chan) { // ERROR "unexpected .*\).* in channel type|missing channel element type"
|
|
}
|
|
|
|
func Bar(x chan, y int) { // ERROR "unexpected comma in channel type|missing channel element type"
|
|
}
|