go.tools/oracle: adjust golden output to new names
R=adonovan TBR=adonovan CC=golang-codereviews https://golang.org/cl/49530049
This commit is contained in:
parent
179e0b3699
commit
29ac1365f4
|
|
@ -6,7 +6,7 @@ definition of package "describe"
|
||||||
method (D) f()
|
method (D) f()
|
||||||
type I interface{f()}
|
type I interface{f()}
|
||||||
method (I) f()
|
method (I) f()
|
||||||
const c untyped integer = 0
|
const c untyped int = 0
|
||||||
type cake float64
|
type cake float64
|
||||||
var global *string
|
var global *string
|
||||||
func main func()
|
func main func()
|
||||||
|
|
@ -17,7 +17,7 @@ definition of package "describe"
|
||||||
reference to built-in type float64
|
reference to built-in type float64
|
||||||
|
|
||||||
-------- @describe const-ref-iota --------
|
-------- @describe const-ref-iota --------
|
||||||
reference to const iota untyped integer of constant value 0
|
reference to const iota untyped int of constant value 0
|
||||||
|
|
||||||
-------- @describe const-def-pi --------
|
-------- @describe const-def-pi --------
|
||||||
definition of const pi untyped float
|
definition of const pi untyped float
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ var s.t.a int
|
||||||
var s.t.b int
|
var s.t.b int
|
||||||
var s.x int
|
var s.x int
|
||||||
var x int
|
var x int
|
||||||
var y int32
|
var y rune
|
||||||
|
|
||||||
-------- @freevars fv3 --------
|
-------- @freevars fv3 --------
|
||||||
Free identifiers:
|
Free identifiers:
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
-------- @describe ref-pkg-import --------
|
-------- @describe ref-pkg-import --------
|
||||||
import of package "lib"
|
import of package "lib"
|
||||||
const Const untyped integer = 3
|
const Const untyped int = 3
|
||||||
func Func func()
|
func Func func()
|
||||||
type Type int
|
type Type int
|
||||||
method (Type) Method(x *int) *int
|
method (Type) Method(x *int) *int
|
||||||
var Var int
|
var Var int
|
||||||
|
|
||||||
-------- @describe ref-const --------
|
-------- @describe ref-const --------
|
||||||
reference to const lib.Const untyped integer
|
reference to const lib.Const untyped int
|
||||||
defined here
|
defined here
|
||||||
|
|
||||||
-------- @describe ref-func --------
|
-------- @describe ref-func --------
|
||||||
|
|
@ -34,7 +34,7 @@ this *int may point to these objects:
|
||||||
|
|
||||||
-------- @describe ref-pkg --------
|
-------- @describe ref-pkg --------
|
||||||
reference to package "lib"
|
reference to package "lib"
|
||||||
const Const untyped integer = 3
|
const Const untyped int = 3
|
||||||
func Func func()
|
func Func func()
|
||||||
type Type int
|
type Type int
|
||||||
method (Type) Method(x *int) *int
|
method (Type) Method(x *int) *int
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue