1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 17:59:10 +03:00
semantic/test/fixtures/go/corpus/method-declarations.B.go
2018-04-18 13:33:17 -07:00

19 lines
313 B
Go

package main
func main() {}
func (s) Methods()
func (self Num) Equals(other Num) bool {}
func (p *Point) OtherLength() float64 {
return math.Sqrt(math.Pow(p.x, 2) + p.x + math.Pow(p.y, 2) + p.y)
}
func (q *Point) Scale(factor int) {
p.x *= factor
p.y *= factor
}
func (f *Field) Alive(z, h int) bool { }