-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
This (empty) example module,
-module(example).
with 17.5, c(example, to_core) gives
module 'example' ['module_info'/0,
'module_info'/1]
attributes []
'module_info'/0 =
fun () ->
call 'erlang':'get_module_info'
('example')
'module_info'/1 =
fun (_cor0) ->
call 'erlang':'get_module_info'
('example', _cor0)
end
But with 18, we get
module 'example' ['module_info'/0,
'module_info'/1]
attributes []
'module_info'/0 =
( fun () ->
( call ( 'erlang'
-| ['compiler_generated'] ):( 'get_module_info'
-| ['compiler_generated'] )
(( 'example'
-| ['compiler_generated'] ))
-| ['compiler_generated'] )
-| ['compiler_generated'] )
'module_info'/1 =
( fun (( _cor0
-| ['compiler_generated'] )) ->
( call ( 'erlang'
-| ['compiler_generated'] ):( 'get_module_info'
-| ['compiler_generated'] )
(( 'example'
-| ['compiler_generated'] ), ( _cor0
-| ['compiler_generated'] ))
-| ['compiler_generated'] )
-| ['compiler_generated'] )
end
and this library is not able to parse that. (I think what I am really asking here, though, is: Is this still in use and maintained?)
Thanks for all the work you've put into this, by the way 🎉
Metadata
Metadata
Assignees
Labels
No labels