geo

geo

Author of Phoenix in Action

Can I disable warnings about undefined assigns with EEx.compile_file/2 and Code.eval_quoted/3?

I’m working on doing some external file compilations and am wondering if I can somehow disable warnings about unavailable assigns. Why the heck would I want that?! As I describe what I’m doing hopefully either 1) the answer; or 2) an alternate solution will be obvious to you.

Let’s say I have a file with some pretty simple contents that I run through EEx.compile_file/2:

<%
  hello = :world
  balance = "1 zillion dollars"
%>

<%= @plan_to_end_world_hunger %>

I’d like to take that file and extract those initial bindings (hello and balance). At this point, I don’t care that @plan_to_end_world_hunger assign is unavailable.

Right now I’m doing this by taking the output of EEx.compile_file/2 and running it through Code.eval_quoted/3. Code.eval_quoted/3 returns {content, bindings} and I’m discarding the content for now. I just want the bindings.

But I get warnings that @plan_to_end_world_hunger is unavailable. I found the spot in the EEx code that presents these errors (https://github.com/elixir-lang/elixir/blob/ce79c2c83d6cb84be4b4efad9df3baf5b8396df5/lib/eex/lib/eex/engine.ex#L129-L148) and a comment states that the future looks even worse for me: it will soon raise errors instead of just warn.

I experimented with implementing my own EEx engine but the functions that handle assigns (handle_assign/1 and fetch_assign/2) are not part of the defined behaviour and not defoverrideable. The simple solution in my mind is to define them as part of the behaviour. So now I have a local file called EEx.EngineWithNoWarnings that is mostly a copy/paste of EEx.Engine but with those functions changed. I can then potentially pass it as the engine option to EEx.compile_file/2.

Is this my solution? The amount of copy/paste in that makes me a bit uncomfortable. Am I too focused on THIS solution that I’m not seeing an easier solution?

I’d really appreciate your thoughts! Thanks in advance.

Where Next?

Popular in Questions Top

srinivasu
How to handle excepions in elixir? Suppose i have A, B, C ,D, E modules. and each module has get() function. A.get() method will call th...
New
dotdotdotPaul
Okay, I'm having a heck of a time trying to figure out how to best handle the validation of belongs_to associations in Ecto. I'm sure I'...
New
joaquinalcerro
Hi there, I am working with Ecto-Postgresql and I need to call all of the records from a specific table but the table has 40,000 record...
New
_russellb
I want to try my hand at web scraping. What tools/libraries do I need to use. I’m hoping to turn this into something professional so don’...
New
sacepums
Hey guys. I'm new to elixir and im really stocked about it. But I ran into a bit of problem - I need to convert a date sting, for examp...
New
myronmarston
The Elixir Typespec docs show the following syntax for keyword lists in typespecs: # ... | [key: type] # keyword lis...
New
mcarvalho
What is the difference between System.get_env and Application.get_env? For example, what are best practices to use one versus another.
New
chensan
I have a User schema with a :from_id field set to type :string: defmodule TweetBot.Repo.Migrations.CreateUsers do use Ecto.Migration ...
New
fireproofsocks
Forgive me if this is obvious, but how does one delete a database record WITHOUT selecting it first? https://hexdocs.pm/ecto/Ecto.Repo.h...
New
electic
Hi, I am new to Elixir. I am trying to use the DateTime component to insert a date into MySQL however the there seems to be no way to fo...
New

Other popular topics Top

JDanielMartinez
Hi! May someone helps me, please! I have two apps into an umbrella project: the first one is Database, which manages queries, and the se...
New
dotdotdotPaul
Okay, I'm having a heck of a time trying to figure out how to best handle the validation of belongs_to associations in Ecto. I'm sure I'...
New
yawaramin
In the Dialyzer docs ( http://erlang.org/doc/man/dialyzer.html#requesting-or-suppressing-warnings-in-source-files ), there is a way to tu...
New
Jim
As a follow up to my earlier question: I have the code compiling and running but not getting a successful login from the rest server. ...
New
fireproofsocks
I’m working on defining a simple Ecto schema for a table (in PostGres), but I don’t see where I can define a column as NOT NULL. Conside...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
vonH
When I run the Plug and I recompile I wind up having to use Ctrl C to quit iex and start again. Witht the help of rlwrap I can use the cu...
New
ovidiubadita
Hey all, I discovered Elixir and I love it. I always wanted to learn a functional programming and I intended to go for Haskell, but afte...
New
chrisalley
ExUnit now has describe blocks which is a welcome addition coming from RSpec. In the docs, it states that nested hierarchies of describe ...
New
AstonJ
by Lance Halvorsen Elixir and Phoenix are generating tremendous excitement as an unbeatable platform for building modern web application...
460 27162 124
New

We're in Beta

About us Mission Statement