Giter VIP home page Giter VIP logo

Comments (10)

kanaka avatar kanaka commented on May 12, 2024

Good catch! That's definitely a bug. I've pushed a soft test for step8 to get travis to do the coverage to determine which ones are broken:: https://travis-ci.org/kanaka/mal/builds/103705447

Not all of them are broken, for example awk and haskell and correct. The problem is that in EVAL after the call to macroexpand, we should call eval_ast if the macro result is not a list rather than just returning the ast.

from mal.

dubek avatar dubek commented on May 12, 2024

I assume the following paragraph in guide.md should be corrected:

* In the evaluator (`EVAL`) before the special forms switch (apply
  section), perform macro expansion by calling the `macroexpand`
  function with the current value of `ast` and `env`. Set `ast` to the
  result of that call. If the new value of `ast` is no longer a list
  after macro expansion, then return `ast`, otherwise continue with
  the rest of the apply section (special forms switch).

And the process/*.txt files:

EVAL(ast,env):
  while true:
    if not list?(ast): return eval_ast(ast, env)

    ast = macroexpand(ast, env)
    if not list?(ast): return ast

    switch ast[0]:
      'def!:        return env.set(ast[1], EVAL(ast[2], env))
...

from mal.

kanaka avatar kanaka commented on May 12, 2024

Yep, exactly.

from mal.

ivern avatar ivern commented on May 12, 2024

I'm not sure why kotlin is marked as having a fix. The test is soft failing on my end. I'll have a fix shortly.

Edit Ok, I guess kotlin works actually. Never mind. What's failing is running the MAL tests using kotlin as the implementation. Is this a bug with MAL-in-MAL then?

from mal.

kanaka avatar kanaka commented on May 12, 2024

@ivern yep, the mal-in-mal implementation is one of the ones that needs fixing.

from mal.

kanaka avatar kanaka commented on May 12, 2024

I updated the list to reflect what's been done rather than what's been merged.

from mal.

kanaka avatar kanaka commented on May 12, 2024

I just merged the PR and pushed updates for the remaining ones. I also made the test mandatory. I'll close this once travis checks out: https://travis-ci.org/kanaka/mal/builds/104991412

from mal.

dubek avatar dubek commented on May 12, 2024

Before you close it, the process/step{8,9,A}_*.txt and process/guide.md should be fixed as discussed above in this issue.

from mal.

kanaka avatar kanaka commented on May 12, 2024

Yep, thanks for the reminder.

from mal.

kanaka avatar kanaka commented on May 12, 2024

Okay, travis passed and I pushed those minor updates.

from mal.

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.