diff options
author | Björn-Egil Dahlberg <[email protected]> | 2014-03-17 17:47:00 +0100 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2014-03-17 17:47:35 +0100 |
commit | fb3ffad98fb1b35d096eaa3ce941b8390395ae8c (patch) | |
tree | 6733b384a94660e3298b298e57b0b1fe7352c496 /lib/compiler/src/v3_kernel.erl | |
parent | 5d75a3b453b64ae1b10c8980ec5c146d7b2d5d1a (diff) | |
download | otp-fb3ffad98fb1b35d096eaa3ce941b8390395ae8c.tar.gz otp-fb3ffad98fb1b35d096eaa3ce941b8390395ae8c.tar.bz2 otp-fb3ffad98fb1b35d096eaa3ce941b8390395ae8c.zip |
compiler: Change #c_map{var} to #c_map{arg}
Not only variables are allowed as arguments, the name should reflect that.
Change cerl Map argument interface
* cerl:map_arg/1 is more suitable then cerl:map_val/1 in this case.
Diffstat (limited to 'lib/compiler/src/v3_kernel.erl')
-rw-r--r-- | lib/compiler/src/v3_kernel.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/src/v3_kernel.erl b/lib/compiler/src/v3_kernel.erl index ecff01c4e5..d3b785aa14 100644 --- a/lib/compiler/src/v3_kernel.erl +++ b/lib/compiler/src/v3_kernel.erl @@ -272,7 +272,7 @@ expr(#c_cons{anno=A,hd=Ch,tl=Ct}, Sub, St0) -> expr(#c_tuple{anno=A,es=Ces}, Sub, St0) -> {Kes,Ep,St1} = atomic_list(Ces, Sub, St0), {#k_tuple{anno=A,es=Kes},Ep,St1}; -expr(#c_map{anno=A,var=Var,es=Ces}, Sub, St0) -> +expr(#c_map{anno=A,arg=Var,es=Ces}, Sub, St0) -> try expr_map(A,Var,Ces,Sub,St0) of {_,_,_}=Res -> Res catch |