• Russ Cox's avatar
    reflect: inline method implementations · 7b6ee1a5
    Russ Cox authored
    This CL is only cut-and-paste, moving code around.
    Moving it in a separate CL should simplify the diffs in later CLs.
    
    There are three patterns here.
    
    1. A function like
            func (v Value) M() (...) {
                    return v.panicIfNot(K).(*kValue).M()
            }
    becomes
            func (v Value) M() (...) {
                    vv := v.panicIfNot(K).(*kValue)
    
                    // body of (*kValue).M, s/v./vv./g
            }
    
    2. A function like
            func (v Value) M() (...) {
                    return v.panicIfNots(kList).(mer).M()
            }
    becomes
            func (v Value) M() (...) {
                    switch vv := v.panicIfNots(kList).(type) {
                    case *k1Value:
                            // body of (*k1Value).M, s/v./vv./g
                    case *k2Value:
                            // body of (*k2Value).M, s/v./vv./g
                    ...
                    }
                    panic("not reached")
            }
    
    3. The rewrite of Value.Set follows 2, but each case
    is built from the bodies of (*kValue).SetValue and (*kValue).Set.
            func (v *kValue) SetValue(x Value) {
                    v.Set(x.panicIfNot(K).(*kValue)
            }
            func (v *kValue) Set(x *kValue) {
                    ... body
            }
    becomes, in the switch from 2,
                    case *kValue:
                            xx := x.panicIfNot(K).(*kValue)
                            ... body, s/v./vv./g; s/x./xx./g
    
    R=r
    CC=golang-dev
    https://golang.org/cl/4398044
    7b6ee1a5
Name
Last commit
Last update
..
archive Loading commit data...
asn1 Loading commit data...
big Loading commit data...
bufio Loading commit data...
bytes Loading commit data...
cmath Loading commit data...
compress Loading commit data...
container Loading commit data...
crypto Loading commit data...
debug Loading commit data...
ebnf Loading commit data...
encoding Loading commit data...
exec Loading commit data...
exp Loading commit data...
expvar Loading commit data...
flag Loading commit data...
fmt Loading commit data...
go Loading commit data...
gob Loading commit data...
hash Loading commit data...
html Loading commit data...
http Loading commit data...
image Loading commit data...
index/suffixarray Loading commit data...
io Loading commit data...
json Loading commit data...
log Loading commit data...
math Loading commit data...
mime Loading commit data...
net Loading commit data...
netchan Loading commit data...
os Loading commit data...
patch Loading commit data...
path Loading commit data...
rand Loading commit data...
reflect Loading commit data...
regexp Loading commit data...
rpc Loading commit data...
runtime Loading commit data...
scanner Loading commit data...
smtp Loading commit data...
sort Loading commit data...
strconv Loading commit data...
strings Loading commit data...
sync Loading commit data...
syscall Loading commit data...
syslog Loading commit data...
tabwriter Loading commit data...
template Loading commit data...
testing Loading commit data...
time Loading commit data...
try Loading commit data...
unicode Loading commit data...
unsafe Loading commit data...
utf16 Loading commit data...
utf8 Loading commit data...
websocket Loading commit data...
xml Loading commit data...
Makefile Loading commit data...
deps.bash Loading commit data...