Pretty print state variables
This commit is contained in:
parent
02d0025fd7
commit
0532c54ca0
@ -589,6 +589,7 @@ pp_ann(_, []) -> [].
|
|||||||
|
|
||||||
pp_arg(?i(I)) -> io_lib:format("~w", [I]);
|
pp_arg(?i(I)) -> io_lib:format("~w", [I]);
|
||||||
pp_arg({arg, N}) -> io_lib:format("arg~p", [N]);
|
pp_arg({arg, N}) -> io_lib:format("arg~p", [N]);
|
||||||
|
pp_arg({var, N}) when N < 0 -> io_lib:format("store~p", [-N]);
|
||||||
pp_arg({var, N}) -> io_lib:format("var~p", [N]);
|
pp_arg({var, N}) -> io_lib:format("var~p", [N]);
|
||||||
pp_arg(?a) -> "a".
|
pp_arg(?a) -> "a".
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user