Git Product home page Git Product logo

Comments (4)

bakpakin avatar bakpakin commented on July 18, 2024 3

Yeah, this is a cannot fix, as tail calls as a concept loose contextual information, making try-catch or any kind of error catching mechanism that uses a stack not an option.

from janet.

llmII avatar llmII commented on July 18, 2024 1

Anything introducing a new fiber will mean there is a new stack. Error handling is based upon fibers and you can't tail call between fibers (they have separate stacks).

If you want the stack information from current fiber and it's ancestors, you can use debug/lineage and apply debug/stacktrace to each in whatever order you please.

If you want tail calls while dealing with error handling, that's not possible. Tail calls involve a stack, but each fiber has it's own stack, so it can't possibly tail call. If you can move the call outside of the mechanism introducing a fiber, you could do a tail call, but in most cases, you're not going to do that when error handling.

from janet.

llmII avatar llmII commented on July 18, 2024

For reference, macex against recurse2's usage of the with macro produces the following:

(do
  (def proc (os/spawn ["ls"] :p {:out :pipe}))
  (do
    (def _00000C
      (fiber/new
        (fn []
          (debug/stacktrace (fiber/current) "print stack" "")
          (recurse))
        :ti))
    (def _00000D (resume _00000C))
    (:close proc)
    (if (= (fiber/status _00000C) :dead)
      _00000D
      (propagate _00000D _00000C))))

I've cleaned it up to change <.function \(.*\)> to \1.

from janet.

llmII avatar llmII commented on July 18, 2024

Correction - recursion within the body of an error handling mechanism (not the part that handles the error, but the code that might error) is non-recursive (and can't be, since that part is in a fiber).

from janet.

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.