`unquote` is correctly highlighted here: ```elixir quote do: defstruct unquote(name) ``` ... but not when `defexception` is used (and likely other definitions, as well): ```elixir quote do: defexception unquote(name) ```