You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type myInt int
type myStruct struct {
aaa map[myInt]myInt // "map" scoped as "keyword.map.go"
}
var m1 map[myInt]myInt // "map" scoped as "entity.name.type.go"
var m2, m3 map[myInt]myInt // "map" scoped as "keyword.map.go"
func foo(arg map[myInt]myInt) { // "map" scoped as "keyword.map.go"
}
Also, every "myInt" except the first one is simply scoped as "source.go".
The text was updated successfully, but these errors were encountered:
Also, every "myInt" except the first one is simply scoped as "source.go".
The text was updated successfully, but these errors were encountered: