-
Notifications
You must be signed in to change notification settings - Fork 26.3k
Pure fn #8198
New issue
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
Pure fn #8198
Conversation
@@ -187,6 +187,9 @@ class StatementInterpreter implements o.StatementVisitor, o.ExpressionVisitor { | |||
case o.BuiltinMethod.SubscribeObservable: | |||
result = ObservableWrapper.subscribe(receiver, args[0]); | |||
break; | |||
case o.BuiltinMethod.bind: | |||
result = receiver; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not right!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Reviewed in person with @mhevery |
5d5aa93
to
bf38ba7
Compare
This reverts commit 8db6215.
Pure pipes as well as arrays and maps are implemented via proxy functions. This is faster than the previous implementation and also generates less code. BREAKING CHANGE: - pipes now take a variable number of arguments, and not an array that contains all arguments.
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Gtihub only