Go-Callvis Viewer

Home|gocallvis/examples/main/main.go
1package main
2
3import (
4    "github.com/ofabry/go-callvis/examples/main/mypkg"
5)
6
7func main() {
8    funcs()
9    var c calls
10    c.execution()
11    c.invocation()
12}
13
14func funcs() {
15    mypkg.Exported()
16}
17
18type calls struct{}
19
20func (callsexecution() {
21    mypkg.Regular()
22}
23
24func (callsinvocation() {
25    mypkg.T.Static()
26    var i mypkg.Iface = mypkg.T
27    i.Dynamic()
28}
29
MembersX
main
main.c
funcs
calls
calls.execution
calls.invocation
calls.invocation.i
mypkg
Members
X