This repository was archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27.4k
$eval
assignment expression and locals
#4664
Milestone
Comments
looks like a legit bug to me. it still repro's in 1.2.7 (http://plnkr.co/edit/2etyqSnPdzxvWEwrusqY?p=preview) at first glance, I suspect that the problem is that we don't consider locals when doing assignment. the fix should be relatively straightforward. check out this lines and notice how we don't consider locals during assignment but we do consider them in the getter: Lines 314 to 321 in e0ce9ed
would you like to send a PR (please include test) PS: sorry for the delay and thanks for being patient |
jbedard
added a commit
to jbedard/angular.js
that referenced
this issue
Dec 4, 2014
jbedard
added a commit
to jbedard/angular.js
that referenced
this issue
Dec 4, 2014
jbedard
added a commit
to jbedard/angular.js
that referenced
this issue
Dec 5, 2014
jbedard
added a commit
to jbedard/angular.js
that referenced
this issue
Dec 6, 2014
jbedard
added a commit
to jbedard/angular.js
that referenced
this issue
Dec 6, 2014
jbedard
added a commit
to jbedard/angular.js
that referenced
this issue
Dec 15, 2014
petebacondarwin
pushed a commit
that referenced
this issue
Jan 12, 2015
This was fixed as part of #10592 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
We can't use a
local
variable in the left side of an assignment without enclosing it in parenthesis to ensure it to be resolved first.I tried to raise a discussion here in order to understand whether it's a bug or not but had not much success.
Basically, this test case won't succeed:
While changing the expression to
(a).value = scopedValue
the test will succeed. Assembled a Plnkr here to illustrate it.As I said before, I'm not sure if this is a bug or a limitation. If it's the later, then I think I could change the documentation to exemplify it. So, is this a bug or a expected limitation?
The text was updated successfully, but these errors were encountered: