aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/src/dialyzer_contracts.erl
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2014-05-09 12:31:00 +0200
committerHans Bolinder <[email protected]>2014-05-13 08:32:28 +0200
commitbe579cbae4a9ab54ae0e56a8e729211c8e1db18f (patch)
treea25eeb693b17e40d85efcd46c30f94eb6bf61200 /lib/dialyzer/src/dialyzer_contracts.erl
parent614bca0f5832f06bcc181c58b78e3371d79ec40d (diff)
downloadotp-be579cbae4a9ab54ae0e56a8e729211c8e1db18f.tar.gz
otp-be579cbae4a9ab54ae0e56a8e729211c8e1db18f.tar.bz2
otp-be579cbae4a9ab54ae0e56a8e729211c8e1db18f.zip
hipe: fix a bug concerning typed record fields
When checking typed record fields Dialyzer failed to handle types containing remote types. Thanks to Erik Søe Sørensen for reporting this bug.
Diffstat (limited to 'lib/dialyzer/src/dialyzer_contracts.erl')
-rw-r--r--lib/dialyzer/src/dialyzer_contracts.erl9
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/dialyzer/src/dialyzer_contracts.erl b/lib/dialyzer/src/dialyzer_contracts.erl
index 283031eb9a..1d2dfc7b2d 100644
--- a/lib/dialyzer/src/dialyzer_contracts.erl
+++ b/lib/dialyzer/src/dialyzer_contracts.erl
@@ -752,14 +752,7 @@ is_remote_types_related(Contract, CSig, Sig, RecDict) ->
t_from_forms_without_remote([{FType, []}], RecDict) ->
Type0 = erl_types:t_from_form(FType, RecDict),
- Map =
- fun(Type) ->
- case erl_types:t_is_remote(Type) of
- true -> erl_types:t_none();
- false -> Type
- end
- end,
- {ok, erl_types:t_map(Map, Type0)};
+ {ok, erl_types:subst_all_remote(Type0, erl_types:t_none())};
t_from_forms_without_remote([{_FType, _Constrs}], _RecDict) ->
%% 'When' constraints
unsupported;