Add method defs

This commit is contained in:
Owen Mansel-Chan
2025-09-11 11:24:53 +01:00
parent cbbf7c2578
commit fa18fd2782
2 changed files with 22 additions and 18 deletions

View File

@@ -1,18 +1,19 @@
| test.go:19:2:19:2 | definition of a | test.go:20:2:20:2 | a |
| test.go:19:2:19:2 | definition of a | test.go:21:2:21:2 | a |
| test.go:19:2:19:2 | definition of a | test.go:22:2:22:2 | a |
| test.go:19:2:19:2 | definition of a | test.go:23:2:23:2 | a |
| test.go:20:11:20:14 | &... | test.go:20:11:20:14 | &... |
| test.go:20:12:20:14 | selection of b | test.go:20:12:20:14 | selection of b |
| test.go:21:2:21:5 | selection of bs | test.go:21:2:21:5 | selection of bs |
| test.go:21:2:21:8 | index expression | test.go:21:2:21:8 | index expression |
| test.go:21:17:21:20 | &... | test.go:21:17:21:20 | &... |
| test.go:21:18:21:20 | struct literal | test.go:21:18:21:20 | struct literal |
| test.go:22:2:22:5 | selection of bs | test.go:22:2:22:5 | selection of bs |
| test.go:22:2:22:8 | index expression | test.go:22:2:22:8 | index expression |
| test.go:22:2:22:13 | implicit dereference | test.go:22:2:22:13 | implicit dereference |
| test.go:22:2:22:13 | selection of cptr | test.go:22:2:22:13 | selection of cptr |
| test.go:23:2:23:7 | implicit dereference | test.go:23:2:23:7 | implicit dereference |
| test.go:23:2:23:7 | selection of bptr | test.go:23:2:23:7 | selection of bptr |
| test.go:23:2:23:12 | implicit dereference | test.go:23:2:23:12 | implicit dereference |
| test.go:23:2:23:12 | selection of cptr | test.go:23:2:23:12 | selection of cptr |
| file://:0:0:0:0 | [summary] to write: Argument[0] in copy | file://:0:0:0:0 | [summary param] 0 in copy |
| test.go:22:2:22:2 | definition of a | test.go:23:2:23:2 | a |
| test.go:22:2:22:2 | definition of a | test.go:24:2:24:2 | a |
| test.go:22:2:22:2 | definition of a | test.go:25:2:25:2 | a |
| test.go:22:2:22:2 | definition of a | test.go:26:2:26:2 | a |
| test.go:23:11:23:14 | &... | test.go:23:11:23:14 | &... |
| test.go:23:12:23:14 | selection of b | test.go:23:12:23:14 | selection of b |
| test.go:24:2:24:5 | selection of bs | test.go:24:2:24:5 | selection of bs |
| test.go:24:2:24:8 | index expression | test.go:24:2:24:8 | index expression |
| test.go:24:17:24:20 | &... | test.go:24:17:24:20 | &... |
| test.go:24:18:24:20 | struct literal | test.go:24:18:24:20 | struct literal |
| test.go:25:2:25:5 | selection of bs | test.go:25:2:25:5 | selection of bs |
| test.go:25:2:25:8 | index expression | test.go:25:2:25:8 | index expression |
| test.go:25:2:25:13 | implicit dereference | test.go:25:2:25:13 | implicit dereference |
| test.go:25:2:25:13 | selection of cptr | test.go:25:2:25:13 | selection of cptr |
| test.go:26:2:26:7 | implicit dereference | test.go:26:2:26:7 | implicit dereference |
| test.go:26:2:26:7 | selection of bptr | test.go:26:2:26:7 | selection of bptr |
| test.go:26:2:26:12 | implicit dereference | test.go:26:2:26:12 | implicit dereference |
| test.go:26:2:26:12 | selection of cptr | test.go:26:2:26:12 | selection of cptr |

View File

@@ -4,6 +4,9 @@ type C struct {
field int
}
func (c C) m(a A) {}
func (c *C) mp(a A) {}
type B struct {
cptr *C
}