Elixir version of a safe navigation operator? (navigating nil in maps/structs)

Yes, they all work fine with debug-compiled files. But debug-compiled means you store Erlang AST in the beam file (that’s what the old Abs chunk stores). So if you’re compiling straight to core, you have no Erlang AST to store and no debug info.

Here’s the PR that changes the debug format: https://github.com/erlang/otp/pull/1367