hotspots-parser 0.0.8

A tool to find hotspots in your git repository.
Documentation
1
2
3
4
5
6
7
8
9
10
package main

type x struct{}

func (x) FuncOne() {}
func (*x) FuncTwo() {
	nested := func() {}
	_ = nested
}
func (f *x) FuncThree() {}