sbrink
Hi, I want to modify elixir files based on the AST.
For the result I want to the elixir formatter.
For a prototype I tried the following and it almost works:
File.read!("example.ex")
|> read_contents_of_file()
|> Code.string_to_quoted!()
|> Macro.to_string()
# |> Code.format_string!()
# |> IO.iodata_to_binary
The problem are the parentheses. They’re added everywhere. An example result:
"defmodule(Example) do\n def(output(str)) do\n IO.inspect(str)\n end\nend"
The documentation for Macro.to_string states “This function discards all formatting of the original code.”.
So is it possible to keep the formatting of the original code?
Thanks in advance for every piece of advice or idea ![]()
- Sascha
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
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
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #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
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
blatyo
You could pass the
:locals_without_parensoption toCode.format_string!/2and see if that fixes the issue.Since the formatter internally works on quoted code, it seems like it’d be reasonable to suggest a new public API to allow passing quoted code directly.
josevalim
The formatter works on heavily annotated AST to be able to preserve the user’s choice in some cases, that’s why it doesn’t work directly on the given AST, because it cannot guaranteed something close to a similar result. The best solution here would be to improve Macro.to_string. For example, it can skip adding parens in do/end blocks.
blatyo
Would it make sense for
Code.string_to_quoted/2to create the heavily annotated AST? Then the formatter could work directly on it? It seems odd to me that the recommended workflow would be:josevalim
We don’t want to expose this internal AST in any way because there is nothing you can do with it this AST we would be able to guarantee compatibility between versions. If you want to format a string, then you need to either go with format string or format file directly.
neenjaw
@sbrink – did you eventually get this to work for you? I am trying to do the same for a different purpose and I cannot get
Code.format_string!/2to remove the brackets from the string output followingMacro.to_string/1.If you did get it to work, do you have an example of how you did it?
Thanks
OvermindDL1
Look at it’s options, specifically the
:locals_without_parensoption, it’s default empty when run directly (themixformatter default sets up some options).neenjaw
Ya, I guess I don’t know how to use it, because when I try something like
Code.format_string!(code_string, locals_without_parens: [def: :*])(which from my understanding should remove brackets from all arities of the def macro) it still doesn’t.Do you know where I can find the mix format call to it?
Or where in the format task the defaults are specified? I can’t find it from my reading through the source
OvermindDL1
Hmm…
And yet the
Code.format_string!docs state:And yet it’s not working, at least in Elixir 1.9.1. Might be worth trying on master and if still not working then submitting a bug issue?
neenjaw
On master:
I’ll file a bug report, thanks @OvermindDL1
neenjaw
Turns out it’s not a bug. It doesn’t do what it seems to imply, but maybe via #9291 it will someday!