diff options
author | Erlang/OTP <[email protected]> | 2018-06-21 17:32:58 +0200 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2018-06-21 17:32:58 +0200 |
commit | 0217f37bd9c0e16cc80b42c2a05c36504b4096ff (patch) | |
tree | 2e00fbd7b6923a06b74227368fbb211d8e75fd23 /lib/syntax_tools/src | |
parent | 4e3f4f6c67d5035cd5150f90ec3df4de91bcb82f (diff) | |
parent | 1f7f0b9d4c1607fb4e27f6508a46b8794408f86c (diff) | |
download | otp-0217f37bd9c0e16cc80b42c2a05c36504b4096ff.tar.gz otp-0217f37bd9c0e16cc80b42c2a05c36504b4096ff.tar.bz2 otp-0217f37bd9c0e16cc80b42c2a05c36504b4096ff.zip |
Merge branch 'hasse/syntax_tools/fix_map_type/OTP-15098/ERIERL-177' into maint-20
* hasse/syntax_tools/fix_map_type/OTP-15098/ERIERL-177:
syntax_tools: Fix a bug regarding reverting map types.
Diffstat (limited to 'lib/syntax_tools/src')
-rw-r--r-- | lib/syntax_tools/src/erl_syntax.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/syntax_tools/src/erl_syntax.erl b/lib/syntax_tools/src/erl_syntax.erl index 9b2b503762..5bd67b3806 100644 --- a/lib/syntax_tools/src/erl_syntax.erl +++ b/lib/syntax_tools/src/erl_syntax.erl @@ -5324,7 +5324,7 @@ revert_map_type_assoc(Node) -> Pos = get_pos(Node), Name = map_type_assoc_name(Node), Value = map_type_assoc_value(Node), - {type, Pos, map_type_assoc, [Name, Value]}. + {type, Pos, map_field_assoc, [Name, Value]}. %% ===================================================================== @@ -5382,7 +5382,7 @@ revert_map_type_exact(Node) -> Pos = get_pos(Node), Name = map_type_exact_name(Node), Value = map_type_exact_value(Node), - {type, Pos, map_type_exact, [Name, Value]}. + {type, Pos, map_field_exact, [Name, Value]}. %% ===================================================================== |