aleppo icon indicating copy to clipboard operation
aleppo copied to clipboard

Alternative Erlang Pre-Processor

Results 4 aleppo issues
Sort by recently updated
recently updated
newest added

## `FUNCTION_NAME` `Mod =` ```erlang -module(test). -export([t/0]). -define(Y, 1). t(A, B) when A > B -> {?Y, ?FUNCTION_NAME}. ``` ```erlang > {ok, Tokens, _} = erl_scan:string(Mod, {0,1}). {ok, [{'-',{2,1}},{atom,{2,2},module}, {'(',{2,8}},...

It would be wonderful if a hex package for aleppo would be available. Since there are no dependencies it should be really easy :)

If Account is maps. And "Account:id()" not throw any error. It should be: exception error: bad argument in function apply/3 called as apply(#{key => value},id,[]) No error and i can't...

It looks like, defines is not properly substituded in guard expressions. ``` erlang -module(ar_test_controller, [Req]). -define(is_ok(X), is_list(X)). test('GET', [X]) when ?is_ok(X) -> ok. ``` `rebar compile` cause following error: ```...