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

refactor($parse): separate tokenizing vs parsing more #9431

Closed
wants to merge 1 commit into from

Conversation

jbedard
Copy link
Collaborator

@jbedard jbedard commented Oct 5, 2014

Fixes a.b and a .b generating different getterFns (which was mentioned a while back in #8901 (comment))
Fixes #9893 ({'': ...} being converted to {"''": ...})
Fixes {.: ...} parsing as {'.': ...} instead of throwing
Fixes #9131 (similar to how #9229 fixes it)

Also simplifies (imo) a few areas in parse.js. For example...

  • tokens no longer have any fn (which had 2 meanings before)
  • token text is always the token text (previously it was the raw value for strings/numbers)
  • .consume() is used in a few more places instead of .expect() and will output a "Unexpected end of expression" instead of .expect() returning false and failing later
  • the tokenizer no longer tries to figure out if a ".identifier" is a method invocation or not, that's now in the parser and much shorter

var ch = this.text.charAt(this.index);
if (ch === '"' || ch === "'") {
this.readString(ch);
} else if (this.isNumber(ch) || (this.index < length-1) && ch === '.' && this.isNumber(this.peek())) {
Copy link
Contributor

Choose a reason for hiding this comment

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

why is (this.index < length-1) needed?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Because isNumber(false) is true when there is nothing after the '.'. Could also add a is-string check to isNumber which might be better then this length check?

Copy link
Contributor

Choose a reason for hiding this comment

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

well, false is not a number, so isNumber should be fixed :)

@lgalfaso
Copy link
Contributor

lgalfaso commented Oct 5, 2014

otherwise, lgtm

@jbedard jbedard force-pushed the parse-token-vs-parse branch 3 times, most recently from 0305fac to 21843de Compare October 5, 2014 21:13
@jbedard
Copy link
Collaborator Author

jbedard commented Oct 5, 2014

Updated.

I also changed one more expect || throw to consume (https://github.com/angular/angular.js/pull/9431/files#diff-780de070ede30180f6aedb6c5f7d57caL614).

@btford
Copy link
Contributor

btford commented Oct 9, 2014

looks good, provided there are no perf implications.

@btford btford added this to the 1.3.0-rc.6 milestone Oct 9, 2014
@jeffbcross
Copy link
Contributor

Moving this to backlog to review/merge after 1.3.0 GA since the diff is so substantial.

@jeffbcross jeffbcross modified the milestones: Backlog, 1.3.0-rc.6 Oct 9, 2014
@tbosch tbosch modified the milestones: Backlog, 1.3.1 Oct 15, 2014
@tbosch tbosch modified the milestones: 1.3.1, Backlog Oct 15, 2014
Fixes `a.b` and `a .b` generating different getterFns
Fixes `{'': ...}` turning into `{"''": ...}`
Fixes `{.: ...}` parsing as `{'.': ...}` instead of throwing
Fixes angular#9131
@jbedard jbedard force-pushed the parse-token-vs-parse branch from 906f5a2 to 16c3a9a Compare November 3, 2014 07:24
@jbedard
Copy link
Collaborator Author

jbedard commented Nov 3, 2014

I've rebased this...

@pkozlowski-opensource
Copy link
Member

This PR also fixes #9893

@IgorMinar IgorMinar modified the milestones: 1.3.4, Backlog Nov 12, 2014
@IgorMinar
Copy link
Contributor

@petebacondarwin we should get this in in 1.3.4 or 1.3.3 before it gets bit rotten.

@lgalfaso or @rodyhaddad could help with the review.

@lgalfaso
Copy link
Contributor

I'll take care of the review

@lgalfaso lgalfaso self-assigned this Nov 12, 2014
@lgalfaso lgalfaso modified the milestones: 1.3.3, 1.3.4 Nov 12, 2014
@lgalfaso
Copy link
Contributor

landed with fbad280

@lgalfaso lgalfaso closed this Nov 12, 2014
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

scope.$eval with "" (empty string) keys Potential usage of reserved keywords in Parser.getterFn
8 participants