mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Instead of `callWithNoYieldsAllowed` which calls a function within (introducing a new stack frame that doesn't absolutely nothing on the client), we now use `withNoYieldsAllowed` that returns a new function that then gets called. Since Deps is used all over the place, and in particular in Blaze, this makes it much easier to look at the stack trace when stopping in a debugger (for example, when a helper gets re-executed). Motivated by the Blaze manual.