Unnamed repository; edit this file 'description' to name the repository.
1
2
3
4
5
6
7
8
9
10
11
12
package main
//      ^ @namespace
type Point struct { X int }
//   ^ @type.definition
//                  ^ @variable.other.member
//                    ^ @type.builtin
func (p Point) Dist(count int) bool {
//             ^ @function.method.public
//                  ^ @variable.parameter
    return helper(count)
//         ^ @function
}