diff options
author | Björn-Egil Dahlberg <[email protected]> | 2014-04-04 12:00:07 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2014-04-04 12:00:07 +0200 |
commit | 89eef897c6564c72d9717228a73959339e486bdb (patch) | |
tree | ebb39bfd3e9bbd3526b2996e36f1d57ee1f0b2c8 /lib/stdlib/examples/erl_id_trans.erl | |
parent | 76c73b9554a3d74b027bc2e1fdace7192b7a8de6 (diff) | |
parent | e26dbc750fdd207c852bf9006668c5771f465dcf (diff) | |
download | otp-89eef897c6564c72d9717228a73959339e486bdb.tar.gz otp-89eef897c6564c72d9717228a73959339e486bdb.tar.bz2 otp-89eef897c6564c72d9717228a73959339e486bdb.zip |
Merge branch 'egil/maps-fix-map-key-patterns'
* egil/maps-fix-map-key-patterns:
stdlib: Fix erl_id_trans example
stdlib: Deny map keys defined as #{ .. := .. } in patterns
compiler: Fix compiling map keys in patterns from core
compiler,stdlib: Fix Map literals as keys for Maps in patterns
Diffstat (limited to 'lib/stdlib/examples/erl_id_trans.erl')
-rw-r--r-- | lib/stdlib/examples/erl_id_trans.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/examples/erl_id_trans.erl b/lib/stdlib/examples/erl_id_trans.erl index 5fcb74310e..e71e26e51a 100644 --- a/lib/stdlib/examples/erl_id_trans.erl +++ b/lib/stdlib/examples/erl_id_trans.erl @@ -148,7 +148,7 @@ pattern({map,Line,Ps0}) -> Ps1 = pattern_list(Ps0), {map,Line,Ps1}; pattern({map_field_exact,Line,K,V}) -> - Ke = pattern(K), + Ke = expr(K), Ve = pattern(V), {map_field_exact,Line,Ke,Ve}; %%pattern({struct,Line,Tag,Ps0}) -> |