Giter VIP home page Giter VIP logo

Comments (1)

benlesh avatar benlesh commented on May 25, 2024

Everything that happens after the promise is resolved (when the microtask fires) happens synchronously in nested functions, and is no different than if you were to do something like:

(async () => {
  await delay(1000)
  console.log(new Error().stack);
})()

Or more accurately:

const delay = (timeout) => new Promise((resolve) => {
    setTimeout(resolve, timeout);
});

(async function mergeMapNext() {
  await delay(1000);
  rxjsLogic();
})();

function rxjsLogic() {
  tapNext();
}

function tapNext() {
  innerTapNext();
}

function innerTapNext() {
  userProvidedFunction();
}

function userProvidedFunction() {
  console.log(new Error().stack);
}

That said, I couldn't replicate the issue myself: https://replit.com/@benlesh/rxjs-issue-7442#index.js

And I also tried cloning your repository and checking on the same version of node. I couldn't reproduce the issue.

I would recommend that you look up "why is my stack trace missing in node?" because it seems to be a condition of errors being thrown after promise resolution in specific versions of node? Although I tried the same one and could reproduce the bug.

Regardless, this doesn't seem to have anything to do with RxJS, because we can't really control the call stack produced by new Error().stack.

from rxjs.

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.