aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/src
diff options
context:
space:
mode:
authorBruce Yinhe <[email protected]>2014-07-15 15:38:55 +0200
committerBruce Yinhe <[email protected]>2014-07-15 15:38:55 +0200
commit0253464202a819b693f7566ac359a60b105dd8b0 (patch)
tree908e9a7a1dc2a915c51306520c76c8ab35d3eb12 /lib/stdlib/src
parent25174d6c266198ae22bf5a830e7dd82e150d4237 (diff)
parent172e812c491680fbb175f56f7604d4098cdc9de4 (diff)
downloadotp-0253464202a819b693f7566ac359a60b105dd8b0.tar.gz
otp-0253464202a819b693f7566ac359a60b105dd8b0.tar.bz2
otp-0253464202a819b693f7566ac359a60b105dd8b0.zip
Merge branch 'maint'
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r--lib/stdlib/src/shell.erl8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/stdlib/src/shell.erl b/lib/stdlib/src/shell.erl
index 3b90542452..679c13f0cf 100644
--- a/lib/stdlib/src/shell.erl
+++ b/lib/stdlib/src/shell.erl
@@ -371,6 +371,14 @@ expand_expr({bc,L,E,Qs}, C) ->
{bc,L,expand_expr(E, C),expand_quals(Qs, C)};
expand_expr({tuple,L,Elts}, C) ->
{tuple,L,expand_exprs(Elts, C)};
+expand_expr({map,L,Es}, C) ->
+ {map,L,expand_exprs(Es, C)};
+expand_expr({map,L,Arg,Es}, C) ->
+ {map,L,expand_expr(Arg, C),expand_exprs(Es, C)};
+expand_expr({map_field_assoc,L,K,V}, C) ->
+ {map_field_assoc,L,expand_expr(K, C),expand_expr(V, C)};
+expand_expr({map_field_exact,L,K,V}, C) ->
+ {map_field_exact,L,expand_expr(K, C),expand_expr(V, C)};
expand_expr({record_index,L,Name,F}, C) ->
{record_index,L,Name,expand_expr(F, C)};
expand_expr({record,L,Name,Is}, C) ->