marick
I’d like to read the code that actually implements the action of unquote. It seems like it should be somewhere in the Erlang source, in elixir_parser.yrl, elixir_compile.erl, elixir_expand.erl, or elixir_erl_pass.erl, but I can’t find it.
It probably doesn’t help that I don’t know Erlang.
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 2- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
dorgan
It seems
unquoteis not a function itself, but rather a special call handled here:https://github.com/elixir-lang/elixir/blob/master/lib/elixir/src/elixir_quote.erl
In essence,
quotetakes the ast and handles calls(as in ast call) tounquotedifferently depending if the:unquoteoption is true or falsemarick
Thanks. I now think I understand. For people interested, I offer the following. Let me know if I’ve gotten things wrong.
Given this:
quote do: inspect(1 + a), compilation works as follows.Quote processing is handled by do_quote. The syntax tree for the body of the
quotelooks like this:That matches a different
do_quote, whose signature is:do_quote({Name, Meta, Args}. In Erlang, variables are uppercased. There are guards that check thatNameis an atom andArgsis a list. There’s a bit of rearrangement that ends with a call todo_quote_tuple, which looks like this:Leftis:inspectandRightis:There’s a recursive descent into the list, then the
do_quoteon line 288 matches the single element:Here
unquoteis the way Erlang spells atoms. In an Elixir function, the signature would bedo_quote({:unquote, _meta, [expr]}All this version of
do_quotedoes is strip and return the single argument:… which may puzzle you as it did me. But let’s see how that three-tuple is used. Recall that it was calculated as part of this:
The interesting bit that the first three arguments came from a three-tuple of the form
{:inspect, meta, [{:unquote, ..., ...}]}Because of the last line, that’s transformed into:
That is:
quote, the original{:inspect, ..., ...}three-tuple was not quoted verbatim, but rather converted into a different three-tuple, with the shape{:{}, ..., ...}. The compiler interprets that shape as meaning "emit code to call this particular function. (Hold that thought.)unquote, the original{:+, ..., ...}three-tuple was quoted verbatim: was left as an instruction to the compiler to create a function call.It’s important to remember that the structure we’ve been building is destined to be compiled and then executed. The compiler is going to take that tree and turn it into a linear set of virtual machine (“BEAM”) instructions. Assuming a pretty simple virtual machine, that set of instructions will look something like this:
{:a, [], MacroExamples.ExpansionViewer}, the compiler produces instructions that say “Look up the value forain the compilation context and push it on the stack.”{:+, [import: Kernel], [1, {...above...}]}produces: “use the function:+inKerneland apply it to1and the top element on the stack. Put the result on top of the stack.”{:{}, ..., [:inspect, ..metadata.., [...above...]]}says “create a three-tuple with the first element:inspect, the second..metadata.., and the top of the stack.”I extracted my example from this code:
Therefore, the result of compiling and executing the
quoteexpression is{:inspect, ..., 6}. Which, since it’s a three-tuple in “here’s a function call, dear compiler” format, could be compiled again, had it been a return value from adefmacro.“I’ve taught you much, my little droogies.” … Maybe?