Source File
scope.go
Belonging Package
go/ast
package ast
import (
)
func ( *Object) () token.Pos {
:= .Name
switch d := .Decl.(type) {
case *Field:
for , := range .Names {
if .Name == {
return .Pos()
}
}
case *ImportSpec:
if .Name != nil && .Name.Name == {
return .Name.Pos()
}
return .Path.Pos()
case *ValueSpec:
for , := range .Names {
if .Name == {
return .Pos()
}
}
case *TypeSpec:
if .Name.Name == {
return .Name.Pos()
}
case *FuncDecl:
if .Name.Name == {
return .Name.Pos()
}
case *LabeledStmt:
if .Label.Name == {
return .Label.Pos()
}
case *AssignStmt:
for , := range .Lhs {
if , := .(*Ident); && .Name == {
return .Pos()
}
}
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |