]> Cypherpunks.ru repositories - gostls13.git/blobdiff - src/go/types/errors.go
go/types, types2: remove local version processing in favor of go/version
[gostls13.git] / src / go / types / errors.go
index a2195011f0ee63a2f8c8459ce1617ff6cae212f0..63b0d9db8f22f4c591d3d349a603d57aa8c1085d 100644 (file)
@@ -7,17 +7,25 @@
 package types
 
 import (
-       "errors"
+       "bytes"
        "fmt"
        "go/ast"
        "go/token"
+       . "internal/types/errors"
+       "runtime"
        "strconv"
        "strings"
 )
 
 func assert(p bool) {
        if !p {
-               panic("assertion failed")
+               msg := "assertion failed"
+               // Include information about the assertion location. Due to panic recovery,
+               // this location is otherwise buried in the middle of the panicking stack.
+               if _, file, line, ok := runtime.Caller(1); ok {
+                       msg = fmt.Sprintf("%s:%d: %s", file, line, msg)
+               }
+               panic(msg)
        }
 }
 
@@ -25,11 +33,74 @@ func unreachable() {
        panic("unreachable")
 }
 
+// An error_ represents a type-checking error.
+// To report an error_, call Checker.report.
+type error_ struct {
+       desc []errorDesc
+       code Code
+       soft bool // TODO(gri) eventually determine this from an error code
+}
+
+// An errorDesc describes part of a type-checking error.
+type errorDesc struct {
+       posn   positioner
+       format string
+       args   []interface{}
+}
+
+func (err *error_) empty() bool {
+       return err.desc == nil
+}
+
+func (err *error_) pos() token.Pos {
+       if err.empty() {
+               return nopos
+       }
+       return err.desc[0].posn.Pos()
+}
+
+func (err *error_) msg(fset *token.FileSet, qf Qualifier) string {
+       if err.empty() {
+               return "no error"
+       }
+       var buf strings.Builder
+       for i := range err.desc {
+               p := &err.desc[i]
+               if i > 0 {
+                       fmt.Fprint(&buf, "\n\t")
+                       if p.posn.Pos().IsValid() {
+                               fmt.Fprintf(&buf, "%s: ", fset.Position(p.posn.Pos()))
+                       }
+               }
+               buf.WriteString(sprintf(fset, qf, false, p.format, p.args...))
+       }
+       return buf.String()
+}
+
+// String is for testing.
+func (err *error_) String() string {
+       if err.empty() {
+               return "no error"
+       }
+       return fmt.Sprintf("%d: %s", err.pos(), err.msg(nil, nil))
+}
+
+// errorf adds formatted error information to err.
+// It may be called multiple times to provide additional information.
+func (err *error_) errorf(at token.Pos, format string, args ...interface{}) {
+       err.desc = append(err.desc, errorDesc{atPos(at), format, args})
+}
+
 func (check *Checker) qualifier(pkg *Package) string {
        // Qualify the package unless it's the package being type-checked.
        if pkg != check.pkg {
+               if check.pkgPathMap == nil {
+                       check.pkgPathMap = make(map[string]map[string]bool)
+                       check.seenPkgMap = make(map[*Package]bool)
+                       check.markImports(check.pkg)
+               }
                // If the same package name was used by multiple packages, display the full path.
-               if check.pkgCnt[pkg.name] > 1 {
+               if len(check.pkgPathMap[pkg.name]) > 1 {
                        return strconv.Quote(pkg.path)
                }
                return pkg.name
@@ -37,59 +108,159 @@ func (check *Checker) qualifier(pkg *Package) string {
        return ""
 }
 
-func (check *Checker) sprintf(format string, args ...interface{}) string {
+// markImports recursively walks pkg and its imports, to record unique import
+// paths in pkgPathMap.
+func (check *Checker) markImports(pkg *Package) {
+       if check.seenPkgMap[pkg] {
+               return
+       }
+       check.seenPkgMap[pkg] = true
+
+       forName, ok := check.pkgPathMap[pkg.name]
+       if !ok {
+               forName = make(map[string]bool)
+               check.pkgPathMap[pkg.name] = forName
+       }
+       forName[pkg.path] = true
+
+       for _, imp := range pkg.imports {
+               check.markImports(imp)
+       }
+}
+
+// check may be nil.
+func (check *Checker) sprintf(format string, args ...any) string {
+       var fset *token.FileSet
+       var qf Qualifier
+       if check != nil {
+               fset = check.fset
+               qf = check.qualifier
+       }
+       return sprintf(fset, qf, false, format, args...)
+}
+
+func sprintf(fset *token.FileSet, qf Qualifier, tpSubscripts bool, format string, args ...any) string {
        for i, arg := range args {
                switch a := arg.(type) {
                case nil:
                        arg = "<nil>"
                case operand:
-                       panic("internal error: should always pass *operand")
+                       panic("got operand instead of *operand")
                case *operand:
-                       arg = operandString(a, check.qualifier)
+                       arg = operandString(a, qf)
                case token.Pos:
-                       arg = check.fset.Position(a).String()
+                       if fset != nil {
+                               arg = fset.Position(a).String()
+                       }
                case ast.Expr:
                        arg = ExprString(a)
+               case []ast.Expr:
+                       var buf bytes.Buffer
+                       buf.WriteByte('[')
+                       writeExprList(&buf, a)
+                       buf.WriteByte(']')
+                       arg = buf.String()
                case Object:
-                       arg = ObjectString(a, check.qualifier)
+                       arg = ObjectString(a, qf)
                case Type:
-                       arg = TypeString(a, check.qualifier)
+                       var buf bytes.Buffer
+                       w := newTypeWriter(&buf, qf)
+                       w.tpSubscripts = tpSubscripts
+                       w.typ(a)
+                       arg = buf.String()
+               case []Type:
+                       var buf bytes.Buffer
+                       w := newTypeWriter(&buf, qf)
+                       w.tpSubscripts = tpSubscripts
+                       buf.WriteByte('[')
+                       for i, x := range a {
+                               if i > 0 {
+                                       buf.WriteString(", ")
+                               }
+                               w.typ(x)
+                       }
+                       buf.WriteByte(']')
+                       arg = buf.String()
+               case []*TypeParam:
+                       var buf bytes.Buffer
+                       w := newTypeWriter(&buf, qf)
+                       w.tpSubscripts = tpSubscripts
+                       buf.WriteByte('[')
+                       for i, x := range a {
+                               if i > 0 {
+                                       buf.WriteString(", ")
+                               }
+                               w.typ(x)
+                       }
+                       buf.WriteByte(']')
+                       arg = buf.String()
                }
                args[i] = arg
        }
        return fmt.Sprintf(format, args...)
 }
 
-func (check *Checker) trace(pos token.Pos, format string, args ...interface{}) {
+func (check *Checker) trace(pos token.Pos, format string, args ...any) {
        fmt.Printf("%s:\t%s%s\n",
                check.fset.Position(pos),
                strings.Repeat(".  ", check.indent),
-               check.sprintf(format, args...),
+               sprintf(check.fset, check.qualifier, true, format, args...),
        )
 }
 
 // dump is only needed for debugging
-func (check *Checker) dump(format string, args ...interface{}) {
-       fmt.Println(check.sprintf(format, args...))
+func (check *Checker) dump(format string, args ...any) {
+       fmt.Println(sprintf(check.fset, check.qualifier, true, format, args...))
 }
 
-func (check *Checker) err(err error) {
-       if err == nil {
-               return
+// Report records the error pointed to by errp, setting check.firstError if
+// necessary.
+func (check *Checker) report(errp *error_) {
+       if errp.empty() {
+               panic("empty error details")
        }
-       var e Error
-       isInternal := errors.As(err, &e)
+
+       msg := errp.msg(check.fset, check.qualifier)
+       switch errp.code {
+       case InvalidSyntaxTree:
+               msg = "invalid AST: " + msg
+       case 0:
+               panic("no error code provided")
+       }
+
+       // If we have a URL for error codes, add a link to the first line.
+       if errp.code != 0 && check.conf._ErrorURL != "" {
+               u := fmt.Sprintf(check.conf._ErrorURL, errp.code)
+               if i := strings.Index(msg, "\n"); i >= 0 {
+                       msg = msg[:i] + u + msg[i:]
+               } else {
+                       msg += u
+               }
+       }
+
+       span := spanOf(errp.desc[0].posn)
+       e := Error{
+               Fset:       check.fset,
+               Pos:        span.pos,
+               Msg:        msg,
+               Soft:       errp.soft,
+               go116code:  errp.code,
+               go116start: span.start,
+               go116end:   span.end,
+       }
+
        // Cheap trick: Don't report errors with messages containing
        // "invalid operand" or "invalid type" as those tend to be
        // follow-on errors which don't add useful information. Only
        // exclude them if these strings are not at the beginning,
        // and only if we have at least one error already reported.
-       isInvalidErr := isInternal && (strings.Index(e.Msg, "invalid operand") > 0 || strings.Index(e.Msg, "invalid type") > 0)
+       isInvalidErr := strings.Index(e.Msg, "invalid operand") > 0 || strings.Index(e.Msg, "invalid type") > 0
        if check.firstErr != nil && isInvalidErr {
                return
        }
 
-       if check.errpos != nil && isInternal {
+       e.Msg = stripAnnotations(e.Msg)
+       if check.errpos != nil {
                // If we have an internal error and the errpos override is set, use it to
                // augment our error positioning.
                // TODO(rFindley) we may also want to augment the error message and refer
@@ -98,20 +269,16 @@ func (check *Checker) err(err error) {
                e.Pos = span.pos
                e.go116start = span.start
                e.go116end = span.end
-               err = e
        }
+       err := e
 
        if check.firstErr == nil {
                check.firstErr = err
        }
 
-       if trace {
+       if check.conf._Trace {
                pos := e.Pos
                msg := e.Msg
-               if !isInternal {
-                       msg = err.Error()
-                       pos = token.NoPos
-               }
                check.trace(pos, "ERROR: %s", msg)
        }
 
@@ -122,47 +289,38 @@ func (check *Checker) err(err error) {
        f(err)
 }
 
-func (check *Checker) newError(at positioner, code errorCode, soft bool, msg string) error {
-       span := spanOf(at)
-       return Error{
-               Fset:       check.fset,
-               Pos:        span.pos,
-               Msg:        msg,
-               Soft:       soft,
-               go116code:  code,
-               go116start: span.start,
-               go116end:   span.end,
-       }
-}
-
-// newErrorf creates a new Error, but does not handle it.
-func (check *Checker) newErrorf(at positioner, code errorCode, soft bool, format string, args ...interface{}) error {
-       msg := check.sprintf(format, args...)
-       return check.newError(at, code, soft, msg)
-}
-
-func (check *Checker) error(at positioner, code errorCode, msg string) {
-       check.err(check.newError(at, code, false, msg))
-}
+const (
+       invalidArg = "invalid argument: "
+       invalidOp  = "invalid operation: "
+)
 
-func (check *Checker) errorf(at positioner, code errorCode, format string, args ...interface{}) {
-       check.error(at, code, check.sprintf(format, args...))
+// newErrorf creates a new error_ for later reporting with check.report.
+func newErrorf(at positioner, code Code, format string, args ...any) *error_ {
+       return &error_{
+               desc: []errorDesc{{at, format, args}},
+               code: code,
+       }
 }
 
-func (check *Checker) softErrorf(at positioner, code errorCode, format string, args ...interface{}) {
-       check.err(check.newErrorf(at, code, true, format, args...))
+func (check *Checker) error(at positioner, code Code, msg string) {
+       check.report(newErrorf(at, code, "%s", msg))
 }
 
-func (check *Checker) invalidAST(at positioner, format string, args ...interface{}) {
-       check.errorf(at, 0, "invalid AST: "+format, args...)
+func (check *Checker) errorf(at positioner, code Code, format string, args ...any) {
+       check.report(newErrorf(at, code, format, args...))
 }
 
-func (check *Checker) invalidArg(at positioner, code errorCode, format string, args ...interface{}) {
-       check.errorf(at, code, "invalid argument: "+format, args...)
+func (check *Checker) softErrorf(at positioner, code Code, format string, args ...any) {
+       err := newErrorf(at, code, format, args...)
+       err.soft = true
+       check.report(err)
 }
 
-func (check *Checker) invalidOp(at positioner, code errorCode, format string, args ...interface{}) {
-       check.errorf(at, code, "invalid operation: "+format, args...)
+func (check *Checker) versionErrorf(at positioner, v goVersion, format string, args ...interface{}) {
+       msg := check.sprintf(format, args...)
+       var err *error_
+       err = newErrorf(at, UnsupportedFeature, "%s requires %s or later", msg, v)
+       check.report(err)
 }
 
 // The positioner interface is used to extract the position of type-checker
@@ -208,7 +366,7 @@ func (s atPos) Pos() token.Pos {
 func spanOf(at positioner) posSpan {
        switch x := at.(type) {
        case nil:
-               panic("internal error: nil")
+               panic("nil positioner")
        case posSpan:
                return x
        case ast.Node:
@@ -219,9 +377,24 @@ func spanOf(at positioner) posSpan {
                        pos := x.Pos()
                        return posSpan{pos, pos, x.expr.End()}
                }
-               return posSpan{token.NoPos, token.NoPos, token.NoPos}
+               return posSpan{nopos, nopos, nopos}
        default:
                pos := at.Pos()
                return posSpan{pos, pos, pos}
        }
 }
+
+// stripAnnotations removes internal (type) annotations from s.
+func stripAnnotations(s string) string {
+       var buf strings.Builder
+       for _, r := range s {
+               // strip #'s and subscript digits
+               if r < '₀' || '₀'+10 <= r { // '₀' == U+2080
+                       buf.WriteRune(r)
+               }
+       }
+       if buf.Len() < len(s) {
+               return buf.String()
+       }
+       return s
+}