1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00
semantic/test/fixtures/go/method-declarations.A.go
2017-11-15 11:08:12 -08: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 { }