cmd/compile: s/typeX/typX/

Apparently I’m having a hard time following my
own naming scheme.

Change-Id: I99c801bef09fa65c1f0e8ecc2fba154a495e9c17
Reviewed-on: https://go-review.googlesource.com/21332
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
This commit is contained in:
Josh Bleecher Snyder 2016-03-30 10:59:29 -07:00
parent 8640b51df8
commit 2592e0999e
3 changed files with 10 additions and 10 deletions

View file

@ -3050,7 +3050,7 @@ func (p *parser) hidden_type_misc() *Type {
default:
// LCHAN hidden_type_non_recv_chan
s2 := p.hidden_type_non_recv_chan()
ss := typeChan(s2, Cboth)
ss := typChan(s2, Cboth)
return ss
case '(':
@ -3058,14 +3058,14 @@ func (p *parser) hidden_type_misc() *Type {
p.next()
s3 := p.hidden_type_recv_chan()
p.want(')')
ss := typeChan(s3, Cboth)
ss := typChan(s3, Cboth)
return ss
case LCOMM:
// LCHAN hidden_type
p.next()
s3 := p.hidden_type()
ss := typeChan(s3, Csend)
ss := typChan(s3, Csend)
return ss
}
@ -3084,7 +3084,7 @@ func (p *parser) hidden_type_recv_chan() *Type {
p.want(LCHAN)
s3 := p.hidden_type()
ss := typeChan(s3, Crecv)
ss := typChan(s3, Crecv)
return ss
}