summaryrefslogtreecommitdiff
path: root/src/pkg/go/types/gcimporter.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/go/types/gcimporter.go')
-rw-r--r--src/pkg/go/types/gcimporter.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/pkg/go/types/gcimporter.go b/src/pkg/go/types/gcimporter.go
index 9e0ae6285..30adc04e7 100644
--- a/src/pkg/go/types/gcimporter.go
+++ b/src/pkg/go/types/gcimporter.go
@@ -461,7 +461,13 @@ func (p *gcParser) parseFuncType() Type {
// MethodSpec = identifier Signature .
//
func (p *gcParser) parseMethodSpec(scope *ast.Scope) {
- p.expect(scanner.Ident)
+ if p.tok == scanner.Ident {
+ p.expect(scanner.Ident)
+ } else {
+ p.parsePkgId()
+ p.expect('.')
+ p.parseDotIdent()
+ }
isVariadic := false
p.parseSignature(scope, &isVariadic)
}