We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See #298
Repro:
nodes = (@createTestNode suite, _ for i in [0...numNodes])
And here's the JS that compiles to:
nodes = (function() { var j, ref, results1; results1 = []; for (i = j = 0, ref = numNodes; 0 <= ref ? j < ref : j > ref; i = 0 <= ref ? ++j : --j) { results1.push(this.createTestNode(suite, _)); } return results1; }).call(_this);
The text was updated successfully, but these errors were encountered:
@aseemk Streamline does not handle the idiom with _this, just this. Should be easy to fix.
_this
this
Sorry, something went wrong.
Thanks @bjouhier!
issue #302 - unit tests for CS _this idiom
b19f089
Sage/babel-plugin-streamline@14241cc
@aseemk You're welcome 😄
I'm going to stop here for the day. I'll fix #301 and #297 tomorrow and I will republish to NPM. I'll look at the other ones a bit later.
bjouhier
No branches or pull requests
See #298
Repro:
And here's the JS that compiles to:
The text was updated successfully, but these errors were encountered: