1
1
mirror of https://github.com/github/semantic.git synced 2024-12-21 13:51:44 +03:00
semantic/test/fixtures/go/corpus/method-declarations.A.go
2018-04-18 13:33:17 -07:00

19 lines
291 B
Go

package main
func main() {}
func (s) Method()
func (self Person) Equals(other Person) bool {}
func (p *Point) Length() float64 {
return math.Sqrt(p.x * p.x + p.y * p.y)
}
func (p *Point) Scale(factor float64) {
p.x *= factor
p.y *= factor
}
func (f *Field) Alive(x, y int) bool { }