add rebar.config.script for checking support maps and binary_to_{integer,float}/1

This commit is contained in:
Led 2015-08-03 00:44:49 +03:00
parent fef001479f
commit 446f674f27
3 changed files with 12 additions and 4 deletions

View file

@ -1010,8 +1010,7 @@ finish_number(Rest, Handler, Acc, Stack, Config) ->
-ifndef(no_binary_to_whatever).
format_number({integer, Acc}) -> {integer, binary_to_integer(Acc)};
format_number({float, Acc}) -> {float, binary_to_float(Acc)}.
-endif.
-ifdef(no_binary_to_whatever).
-else.
format_number({integer, Acc}) -> {integer, list_to_integer(unicode:characters_to_list(Acc))};
format_number({float, Acc}) -> {float, list_to_float(unicode:characters_to_list(Acc))}.
-endif.