Git Product home page Git Product logo

Comments (5)

rgreenjr avatar rgreenjr commented on May 19, 2024

I'll start work on this one.

from exfmt.

rgreenjr avatar rgreenjr commented on May 19, 2024

This looks like it will be fairly straightforward (famous last words).

However I've run into a problem. The semantic tests in Semantic.ExfmtProjectTest fail anytime parentheses are added to zero arity function definitions.

For example, changing the macro in Exfmt.Ast.Infix from:

defmacro infix_ops do
    @infix_ops
end

to:

defmacro infix_ops() do
    @infix_ops
end

produces this error:

** (Exfmt.SemanticsError) Error: The semantic meaning of the source code differs
     between the input and the formatted output! We are unable
     to continue as formatting may break your code.

I'll dig into this, but wanted to post this in case you knew of an easy fix.

from exfmt.

rgreenjr avatar rgreenjr commented on May 19, 2024

The AST produced by a zero arity function definition without parentheses:

quote do
  def one do
    1
  end
end
{:def, [context: Elixir, import: Kernel],
 [{:one, [context: Elixir], Elixir}, [do: 1]]}

differs more than I expected from the same function definition with parentheses:

quote do
  def one() do
    1
  end
end
{:def, [context: Elixir, import: Kernel],
 [{:one, [context: Elixir], []}, [do: 1]]}

The semantic check is getting tripped up by this difference.

from exfmt.

OvermindDL1 avatar OvermindDL1 commented on May 19, 2024

'def' is just a macro invocation, and the change is from going from a 'binding' ast to a 'call' ast, which is definitely a big change. Internally the 'def' is a macro (as might other things be too) that can accept both (design fault in my opinion...).

from exfmt.

rgreenjr avatar rgreenjr commented on May 19, 2024

Thanks @OvermindDL1, that's very helpful.

from exfmt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.