mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/compile/internal/types2: review of check.go
The changes between (equivalent, and reviewed) go/types/check.go and check.go can be seen by comparing patchset 1 and 2. The actual changes are removing the "// UNREVIEWED" marker. The primary differences to go/types/check.go are: - use of syntax instead of go/ast package - tracing is controlled via flag not the "trace" constant Change-Id: I1c9998afb3e0b7e29f5b169d3a4054cf22841490 Reviewed-on: https://go-review.googlesource.com/c/go/+/304109 Reviewed-by: Robert Findley <rfindley@google.com> Trust: Robert Griesemer <gri@golang.org>
This commit is contained in:
parent
74fe516c35
commit
0fc595ec99
1 changed files with 1 additions and 2 deletions
|
|
@ -1,4 +1,3 @@
|
||||||
// UNREVIEWED
|
|
||||||
// Copyright 2011 The Go Authors. All rights reserved.
|
// Copyright 2011 The Go Authors. All rights reserved.
|
||||||
// Use of this source code is governed by a BSD-style
|
// Use of this source code is governed by a BSD-style
|
||||||
// license that can be found in the LICENSE file.
|
// license that can be found in the LICENSE file.
|
||||||
|
|
@ -17,7 +16,7 @@ import (
|
||||||
var nopos syntax.Pos
|
var nopos syntax.Pos
|
||||||
|
|
||||||
// debugging/development support
|
// debugging/development support
|
||||||
const debug = true // leave on during development
|
const debug = false // leave on during development
|
||||||
|
|
||||||
// If forceStrict is set, the type-checker enforces additional
|
// If forceStrict is set, the type-checker enforces additional
|
||||||
// rules not specified by the Go 1 spec, but which will
|
// rules not specified by the Go 1 spec, but which will
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue