From 4b95e48766eb31046da49a23daad7550df1baa5a Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Sun, 19 Apr 2020 18:08:24 -0700 Subject: [PATCH] api: update except.txt to accomodate for bigger types.Type Fixing API check to make it pass. Adding the extra methods to types.Type is not backward-compatible, but this is a prototype, so we don't care too much for now. Passes all.bash. Change-Id: I7d1ab5d4eb2d69d10302e2aed2718b4a03ab36cc Reviewed-on: https://team-review.git.corp.google.com/c/golang/go2-dev/+/722390 Reviewed-by: Robert Griesemer --- api/except.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/api/except.txt b/api/except.txt index ccfdf06c55..79ffd91da0 100644 --- a/api/except.txt +++ b/api/except.txt @@ -1,4 +1,5 @@ pkg encoding/json, method (*RawMessage) MarshalJSON() ([]uint8, error) +pkg go/types, type Type interface { String, Underlying } pkg math/big, const MaxBase = 36 pkg math/big, type Word uintptr pkg net, func ListenUnixgram(string, *UnixAddr) (*UDPConn, error)