typepatch fix: don't change patch pkg
This commit is contained in:
@@ -15,3 +15,54 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
package errors
|
package errors
|
||||||
|
|
||||||
|
// llgo:skipall
|
||||||
|
import (
|
||||||
|
_ "unsafe"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Unwrap returns the result of calling the Unwrap method on err, if err's
|
||||||
|
// type contains an Unwrap method returning error.
|
||||||
|
// Otherwise, Unwrap returns nil.
|
||||||
|
//
|
||||||
|
// Unwrap only calls a method of the form "Unwrap() error".
|
||||||
|
// In particular Unwrap does not unwrap errors returned by [Join].
|
||||||
|
func Unwrap(err error) error {
|
||||||
|
u, ok := err.(interface {
|
||||||
|
Unwrap() error
|
||||||
|
})
|
||||||
|
if !ok {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
return u.Unwrap()
|
||||||
|
}
|
||||||
|
|
||||||
|
// New returns an error that formats as the given text.
|
||||||
|
// Each call to New returns a distinct error value even if the text is identical.
|
||||||
|
func New(text string) error {
|
||||||
|
return &errorString{text}
|
||||||
|
}
|
||||||
|
|
||||||
|
// errorString is a trivial implementation of error.
|
||||||
|
type errorString struct {
|
||||||
|
s string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e *errorString) Error() string {
|
||||||
|
return e.s
|
||||||
|
}
|
||||||
|
|
||||||
|
// ErrUnsupported indicates that a requested operation cannot be performed,
|
||||||
|
// because it is unsupported. For example, a call to [os.Link] when using a
|
||||||
|
// file system that does not support hard links.
|
||||||
|
//
|
||||||
|
// Functions and methods should not return this error but should instead
|
||||||
|
// return an error including appropriate context that satisfies
|
||||||
|
//
|
||||||
|
// errors.Is(err, errors.ErrUnsupported)
|
||||||
|
//
|
||||||
|
// either by directly wrapping ErrUnsupported or by implementing an Is method.
|
||||||
|
//
|
||||||
|
// Functions and methods should document the cases in which an error
|
||||||
|
// wrapping this will be returned.
|
||||||
|
var ErrUnsupported = New("unsupported operation")
|
||||||
|
|||||||
@@ -43,6 +43,7 @@ type typesScope struct {
|
|||||||
isFunc bool
|
isFunc bool
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
type object struct {
|
type object struct {
|
||||||
parent *types.Scope
|
parent *types.Scope
|
||||||
pos token.Pos
|
pos token.Pos
|
||||||
@@ -54,6 +55,7 @@ type iface struct {
|
|||||||
tab unsafe.Pointer
|
tab unsafe.Pointer
|
||||||
data unsafe.Pointer
|
data unsafe.Pointer
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
const (
|
const (
|
||||||
tagPatched = 0x17
|
tagPatched = 0x17
|
||||||
@@ -77,11 +79,24 @@ func setScope(pkg *types.Package, scope *types.Scope) {
|
|||||||
p.scope = scope
|
p.scope = scope
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
func setPath(pkg *types.Package, path string) {
|
||||||
|
p := (*typesPackage)(unsafe.Pointer(pkg))
|
||||||
|
p.path = path
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
func setPkg(o types.Object, pkg *types.Package) {
|
||||||
|
data := (*iface)(unsafe.Pointer(&o)).data
|
||||||
|
(*object)(data).pkg = pkg
|
||||||
|
}
|
||||||
|
|
||||||
func setPkgAndParent(o types.Object, pkg *types.Package, parent *types.Scope) {
|
func setPkgAndParent(o types.Object, pkg *types.Package, parent *types.Scope) {
|
||||||
data := (*iface)(unsafe.Pointer(&o)).data
|
data := (*iface)(unsafe.Pointer(&o)).data
|
||||||
(*object)(data).pkg = pkg
|
(*object)(data).pkg = pkg
|
||||||
(*object)(data).parent = parent
|
(*object)(data).parent = parent
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
func getElems(scope *types.Scope) map[string]types.Object {
|
func getElems(scope *types.Scope) map[string]types.Object {
|
||||||
s := (*typesScope)(unsafe.Pointer(scope))
|
s := (*typesScope)(unsafe.Pointer(scope))
|
||||||
@@ -105,11 +120,23 @@ func Pkg(pkg, alt *types.Package) *types.Package {
|
|||||||
|
|
||||||
altScope := alt.Scope()
|
altScope := alt.Scope()
|
||||||
for name, o := range getElems(altScope) {
|
for name, o := range getElems(altScope) {
|
||||||
setPkgAndParent(o, &ret, &scope)
|
/*
|
||||||
|
switch o := o.(type) {
|
||||||
|
case *types.TypeName:
|
||||||
|
if t, ok := o.Type().(*types.Named); ok {
|
||||||
|
for i, n := 0, t.NumMethods(); i < n; i++ {
|
||||||
|
m := t.Method(i)
|
||||||
|
setPkg(m, &ret)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
setPkgAndParent(o, &ret, &scope)
|
||||||
|
*/
|
||||||
elems[name] = o
|
elems[name] = o
|
||||||
}
|
}
|
||||||
setElems(&scope, elems)
|
setElems(&scope, elems)
|
||||||
setScope(&ret, &scope)
|
setScope(&ret, &scope)
|
||||||
setPatched(pkg)
|
setPatched(pkg)
|
||||||
|
// setPath(alt, ret.Path())
|
||||||
return &ret
|
return &ret
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user