Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

feat($parse): add support for ternary operators to parser #2482

Closed
wants to merge 2 commits into from

Conversation

zachsnow
Copy link
Contributor

Add '?' token to lexer, add ternary rule to parser at
(hopefully) proper precedence and associativity (based
on https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Operator_Precedence).
Since (exp1 && exp2 || exp3) is supported by the parser,
and (exp1 ? exp2 : exp3) works the same way, it seems
reasonable to add this minor form of control to templates
(see #719).

Add '?' token to lexer, add ternary rule to parser at
(hopefully) proper precedence and associativity (based
on https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Operator_Precedence).
Since (exp1 && exp2 || exp3) is supported by the parser,
and (exp1 ? exp2 : exp3) works the same way, it seems
reasonable to add this minor form of control to templates
(see angular#719).
@zachsnow
Copy link
Contributor Author

One thing I wasn't totally sure about was the assignments in $parse when json is set:

assignment = logicalOR;

It seemed to me that this shouldn't be replaced with ternary because ternary doesn't make sense when parsing JSON, but then again neither do logical boolean operators, so I was a bit confused.

Obviously let me know if there's problems or I should format this differently, etc; I haven't submitted to or worked on Angular before. Cheers!

@petebacondarwin
Copy link
Contributor

  • Contributor signed CLA now or in the past (if you just signed, leave a comment here with your real name for cross reference)
  • Feature improves existing core functionality
  • API is compatible with existing Angular apis and relevant standards (if applicable)
  • PR doesn't contain a breaking change
  • PR contains unit tests
  • PR contains e2e tests (if suitable)
  • PR contains documentation update
  • PR passes all tests on Travis (sanity)
  • PR passes all tests on ci.angularjs.org (cross-browser compatibility)
  • PR is rebased against recent master
  • PR is squashed into one commit per logical change
  • PR's commit messages are descriptive and allows us to autogenerate release notes (required commit message format)
  • All changes requested in review have been implemented


// Precedence with respect to logical operators.
expect(scope.$eval('0&&1?0:1')).toEqual(0&&1?0:1);
expect(scope.$eval('0&&1?0:1')).toEqual((0&&1)?0:1);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what does this line add over the previous one?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shouldn't you also be including expectations with logical operators in the second or third clause?
e.g. 0?0||1:2 or 1?1&&0:1

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The with+without parentheses was more for me to be sure I was actually understanding the precedence and associativity correctly.

As for more expectations, will do!

@petebacondarwin
Copy link
Contributor

Regarding JSON and https://github.com/zachsnow/angular.js/blob/16af3b855198dc377083251cad5c7bead3c0d875/src/ng/parse.js#L293.

It appears that as soon as any invalid JSON is found, token.json is set to false, which then fails the parsing. So it probably doesn't matter what is provided here but...

Since JSON does not allow ternary or binary expressions of any kind, then I think that actually this is a bug in the JSON parser here and in fact this line should be:

assignment = unary();

And of course we would need tests to prove it. But this should go into a new PR if we decided to go that way.

@petebacondarwin
Copy link
Contributor

Once you have dealt with my comments, this looks good to merge.

…mprove clarity of tests; remove redundant tests.
@zachsnow
Copy link
Contributor Author

Updated. Also, I have signed the CLA (Zach Snow).

@petebacondarwin
Copy link
Contributor

Merged as 6798fec. Thanks!! Great PR. Can you do more of these?

@zachsnow
Copy link
Contributor Author

@petebacondarwin no problem; as for more, I'd be happy to :)

Also it seems like the last commit of the request didn't get merged (f7da538)?

@petebacondarwin
Copy link
Contributor

Oops! Committed the changed tests here: 2a7043f. No need to have that extra right variable.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants