mirror of
https://github.com/golang/go
synced 2024-11-17 02:54:45 -07:00
go/types: generate typestring.go from types2 source
This CL reduces the amount of code that needs to be maintained manually by about 500 LOC. Change-Id: I643bea15203f7a916ef78b2738f125aa5b312eed Reviewed-on: https://go-review.googlesource.com/c/go/+/565438 Reviewed-by: Robert Findley <rfindley@google.com> Reviewed-by: Robert Griesemer <gri@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Robert Griesemer <gri@google.com>
This commit is contained in:
parent
cc276a768f
commit
6c979d2522
@ -16,18 +16,18 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// A Qualifier controls how named package-level objects are printed in
|
// A Qualifier controls how named package-level objects are printed in
|
||||||
// calls to TypeString, ObjectString, and SelectionString.
|
// calls to [TypeString], [ObjectString], and [SelectionString].
|
||||||
//
|
//
|
||||||
// These three formatting routines call the Qualifier for each
|
// These three formatting routines call the Qualifier for each
|
||||||
// package-level object O, and if the Qualifier returns a non-empty
|
// package-level object O, and if the Qualifier returns a non-empty
|
||||||
// string p, the object is printed in the form p.O.
|
// string p, the object is printed in the form p.O.
|
||||||
// If it returns an empty string, only the object name O is printed.
|
// If it returns an empty string, only the object name O is printed.
|
||||||
//
|
//
|
||||||
// Using a nil Qualifier is equivalent to using (*Package).Path: the
|
// Using a nil Qualifier is equivalent to using (*[Package]).Path: the
|
||||||
// object is qualified by the import path, e.g., "encoding/json.Marshal".
|
// object is qualified by the import path, e.g., "encoding/json.Marshal".
|
||||||
type Qualifier func(*Package) string
|
type Qualifier func(*Package) string
|
||||||
|
|
||||||
// RelativeTo returns a Qualifier that fully qualifies members of
|
// RelativeTo returns a [Qualifier] that fully qualifies members of
|
||||||
// all packages other than pkg.
|
// all packages other than pkg.
|
||||||
func RelativeTo(pkg *Package) Qualifier {
|
func RelativeTo(pkg *Package) Qualifier {
|
||||||
if pkg == nil {
|
if pkg == nil {
|
||||||
@ -42,7 +42,7 @@ func RelativeTo(pkg *Package) Qualifier {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// TypeString returns the string representation of typ.
|
// TypeString returns the string representation of typ.
|
||||||
// The Qualifier controls the printing of
|
// The [Qualifier] controls the printing of
|
||||||
// package-level objects, and may be nil.
|
// package-level objects, and may be nil.
|
||||||
func TypeString(typ Type, qf Qualifier) string {
|
func TypeString(typ Type, qf Qualifier) string {
|
||||||
var buf bytes.Buffer
|
var buf bytes.Buffer
|
||||||
@ -51,14 +51,14 @@ func TypeString(typ Type, qf Qualifier) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// WriteType writes the string representation of typ to buf.
|
// WriteType writes the string representation of typ to buf.
|
||||||
// The Qualifier controls the printing of
|
// The [Qualifier] controls the printing of
|
||||||
// package-level objects, and may be nil.
|
// package-level objects, and may be nil.
|
||||||
func WriteType(buf *bytes.Buffer, typ Type, qf Qualifier) {
|
func WriteType(buf *bytes.Buffer, typ Type, qf Qualifier) {
|
||||||
newTypeWriter(buf, qf).typ(typ)
|
newTypeWriter(buf, qf).typ(typ)
|
||||||
}
|
}
|
||||||
|
|
||||||
// WriteSignature writes the representation of the signature sig to buf,
|
// WriteSignature writes the representation of the signature sig to buf,
|
||||||
// without a leading "func" keyword. The Qualifier controls the printing
|
// without a leading "func" keyword. The [Qualifier] controls the printing
|
||||||
// of package-level objects, and may be nil.
|
// of package-level objects, and may be nil.
|
||||||
func WriteSignature(buf *bytes.Buffer, sig *Signature, qf Qualifier) {
|
func WriteSignature(buf *bytes.Buffer, sig *Signature, qf Qualifier) {
|
||||||
newTypeWriter(buf, qf).signature(sig)
|
newTypeWriter(buf, qf).signature(sig)
|
||||||
@ -322,7 +322,13 @@ func (w *typeWriter) typ(typ Type) {
|
|||||||
// error messages. This doesn't need to be super-elegant; we just
|
// error messages. This doesn't need to be super-elegant; we just
|
||||||
// need a clear indication that this is not a predeclared name.
|
// need a clear indication that this is not a predeclared name.
|
||||||
if w.ctxt == nil && Universe.Lookup(t.obj.name) != nil {
|
if w.ctxt == nil && Universe.Lookup(t.obj.name) != nil {
|
||||||
w.string(fmt.Sprintf(" /* with %s declared at %s */", t.obj.name, t.obj.Pos()))
|
if isTypes2 {
|
||||||
|
w.string(fmt.Sprintf(" /* with %s declared at %v */", t.obj.name, t.obj.Pos()))
|
||||||
|
} else {
|
||||||
|
// Can't print position information because
|
||||||
|
// we don't have a token.FileSet accessible.
|
||||||
|
w.string("/* type parameter */")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -146,6 +146,7 @@ var filemap = map[string]action{
|
|||||||
"typeparam.go": nil,
|
"typeparam.go": nil,
|
||||||
"typeterm_test.go": nil,
|
"typeterm_test.go": nil,
|
||||||
"typeterm.go": nil,
|
"typeterm.go": nil,
|
||||||
|
"typestring.go": nil,
|
||||||
"under.go": nil,
|
"under.go": nil,
|
||||||
"unify.go": fixSprintf,
|
"unify.go": fixSprintf,
|
||||||
"universe.go": fixGlobalTypVarDecl,
|
"universe.go": fixGlobalTypVarDecl,
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
// Code generated by "go test -run=Generate -write=all"; DO NOT EDIT.
|
||||||
|
|
||||||
// Copyright 2013 The Go Authors. All rights reserved.
|
// Copyright 2013 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.
|
||||||
@ -9,7 +11,6 @@ package types
|
|||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"fmt"
|
"fmt"
|
||||||
"go/token"
|
|
||||||
"sort"
|
"sort"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
@ -125,7 +126,7 @@ func (w *typeWriter) typ(typ Type) {
|
|||||||
case *Basic:
|
case *Basic:
|
||||||
// exported basic types go into package unsafe
|
// exported basic types go into package unsafe
|
||||||
// (currently this is just unsafe.Pointer)
|
// (currently this is just unsafe.Pointer)
|
||||||
if token.IsExported(t.name) {
|
if isExported(t.name) {
|
||||||
if obj, _ := Unsafe.scope.Lookup(t.name).(*TypeName); obj != nil {
|
if obj, _ := Unsafe.scope.Lookup(t.name).(*TypeName); obj != nil {
|
||||||
w.typeName(obj)
|
w.typeName(obj)
|
||||||
break
|
break
|
||||||
@ -153,7 +154,7 @@ func (w *typeWriter) typ(typ Type) {
|
|||||||
// If disambiguating one struct for another, look for the first unexported field.
|
// If disambiguating one struct for another, look for the first unexported field.
|
||||||
// Do this first in case of nested structs; tag the first-outermost field.
|
// Do this first in case of nested structs; tag the first-outermost field.
|
||||||
pkgAnnotate := false
|
pkgAnnotate := false
|
||||||
if w.qf == nil && w.pkgInfo && !token.IsExported(f.name) {
|
if w.qf == nil && w.pkgInfo && !isExported(f.name) {
|
||||||
// note for embedded types, type name is field name, and "string" etc are lower case hence unexported.
|
// note for embedded types, type name is field name, and "string" etc are lower case hence unexported.
|
||||||
pkgAnnotate = true
|
pkgAnnotate = true
|
||||||
w.pkgInfo = false // only tag once
|
w.pkgInfo = false // only tag once
|
||||||
@ -174,9 +175,9 @@ func (w *typeWriter) typ(typ Type) {
|
|||||||
}
|
}
|
||||||
if tag := t.Tag(i); tag != "" {
|
if tag := t.Tag(i); tag != "" {
|
||||||
w.byte(' ')
|
w.byte(' ')
|
||||||
// TODO(rfindley) If tag contains blanks, replacing them with '#'
|
// TODO(gri) If tag contains blanks, replacing them with '#'
|
||||||
// in Context.TypeHash may produce another tag
|
// in Context.TypeHash may produce another tag
|
||||||
// accidentally.
|
// accidentally.
|
||||||
w.string(strconv.Quote(tag))
|
w.string(strconv.Quote(tag))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -322,10 +323,14 @@ func (w *typeWriter) typ(typ Type) {
|
|||||||
// (say int), point out where it is declared to avoid confusing
|
// (say int), point out where it is declared to avoid confusing
|
||||||
// error messages. This doesn't need to be super-elegant; we just
|
// error messages. This doesn't need to be super-elegant; we just
|
||||||
// need a clear indication that this is not a predeclared name.
|
// need a clear indication that this is not a predeclared name.
|
||||||
// Note: types2 prints position information here - we can't do
|
|
||||||
// that because we don't have a token.FileSet accessible.
|
|
||||||
if w.ctxt == nil && Universe.Lookup(t.obj.name) != nil {
|
if w.ctxt == nil && Universe.Lookup(t.obj.name) != nil {
|
||||||
w.string("/* type parameter */")
|
if isTypes2 {
|
||||||
|
w.string(fmt.Sprintf(" /* with %s declared at %v */", t.obj.name, t.obj.Pos()))
|
||||||
|
} else {
|
||||||
|
// Can't print position information because
|
||||||
|
// we don't have a token.FileSet accessible.
|
||||||
|
w.string("/* type parameter */")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user