Skip to content
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

Introduce scope tracking in the parser #9493

Merged
merged 27 commits into from Feb 25, 2019
Merged

Introduce scope tracking in the parser #9493

merged 27 commits into from Feb 25, 2019

Conversation

danez
Copy link
Member

@danez danez commented Feb 11, 2019

Q                       A
Fixed Issues? Fixes #6722 (Fixes maybe #6283) Fixes #9316 Fixes #4331
Patch: Bug Fix? y
Major: Breaking Change? n
Minor: New Feature? n
Tests Added + Pass? Yes
Documentation PR Link
Any Dependency Changes?
License MIT (acorn MIT)

This introduces scope tracking in the parser. The scope tracking replaces some of the Flags we currently have (inGenerator, inFunction, ...).

Spec changes:

  • We now report an syntax error if super is used even though there is no superClass
  • Duplicate bindings will throw according to spec

The idea here is to enter and exit scopes, during parsing so we always can check the current scope. A scope consists of flags (which adds information we need in several places like SCOPE_FUNCTION, SCOPE_ASYNC, ...) and 3 collections of declared bindings in this scope (var, lexical(let, const, classes) and functions).

TODO:

  • Add tests for duplicate variable bindings.
  • Migrate some traverse tests (duplicate declarations) to not use the parser

Big thanks to acorn, as most of this here is ported from acorn. :) Same goes for copyright on most of it.

@danez danez added PR: Spec Compliance 👓 A type of pull request used for our changelog categories pkg: parser labels Feb 11, 2019
@danez danez added the PR: WIP label Feb 11, 2019
@danez danez added this to In progress in Parser: Spec Compliance, Refactoring and Performance via automation Feb 12, 2019
@babel-bot
Copy link
Collaborator

babel-bot commented Feb 13, 2019

Build successful! You can test your changes in the REPL here: https://babeljs.io/repl/build/10229/

@danez
Copy link
Member Author

danez commented Feb 15, 2019

We have some tests that test the duplicate declaration checks of babel-traverse, but as the parser now throws first we are not getting to the point of testing duplicate declarations in traverse.

I see 3 options:

  1. Leave the tests as is and don't care that we are not testing traverse.
  2. Add an option to the parser to disable the duplicate check.
  3. Move the tests to the parser (as thats what they are testing now) but also recreate new tests for traverse which do not use the parser but node builders instead to create the AST.

1 and 2 are not really good options for me. So I guess I will go for 3 which is the most work but the best I feel? Any other ideas on this?

@nicolo-ribaudo
Copy link
Member

👍 for 3. We could ask help to the community to rewrite the @babel/traverse tests.

@danez
Copy link
Member Author

danez commented Feb 15, 2019

👍 for 3. We could ask help to the community to rewrite the @babel/traverse tests.

Turns out it was only 4 tests. Probably took longer to write the message above, than it will take to fix them :D

nicolo-ribaudo
nicolo-ribaudo previously approved these changes Feb 17, 2019
@nicolo-ribaudo nicolo-ribaudo dismissed their stale review February 17, 2019 10:32

Whoops, wrong PR. I meant to approve #9522

Parser: Spec Compliance, Refactoring and Performance automation moved this from Reviewed to In progress Feb 17, 2019
@danez danez removed the PR: WIP label Feb 20, 2019
},
},
]);

Copy link
Member Author

Choose a reason for hiding this comment

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

Not sure if i should leave that or not. If this check would be in traverse I would leave it, but in the transform, the only valid usecase now would be someone creating in a plugin invalid code and then running the transform.

Copy link
Member

Choose a reason for hiding this comment

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

I don't think that we need it: currently all the other early errors (except for the duplicated bindings errors) are only in @babel/parser.

Copy link
Member

@nicolo-ribaudo nicolo-ribaudo left a comment

Choose a reason for hiding this comment

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

I think that we should also add binding types for Flow and TS types, and check if they are duplicated.

In flow types and vars share the same namespace (type A = string; var A is an error), while in TypeScript they are in different namespaces. type A = string; type A = number; is an error in both languages.

packages/babel-parser/src/util/scopeflags.js Outdated Show resolved Hide resolved
packages/babel-parser/src/parser/lval.js Outdated Show resolved Hide resolved

// The functions in this module keep track of declared variables in the
// current scope in order to detect duplicate variable names.
export default class ScopeParser extends UtilParser {
Copy link
Member

Choose a reason for hiding this comment

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

Since ScopeParser is pretty much its own thing, maybe we could use it like this.scope.* instead of adding it to the prototype chain, like we do for State?

Copy link
Member Author

Choose a reason for hiding this comment

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

I changed it to be a separate class, which works and might be nice to have like this if we would want to reuse this parts in traverse for example.

But when looking into flow I noticed another problem: extending the scope tracking is not as easy possible with the external class. So for typescript we probably would want to add another binding group for types. Flow has some custom rules too when it comes to declare class|var|function. I'm not sure if we actually want to support extending the scope tracking but it might be nice.

packages/babel-parser/src/parser/statement.js Outdated Show resolved Hide resolved
packages/babel-parser/src/parser/statement.js Outdated Show resolved Hide resolved
packages/babel-parser/src/parser/expression.js Outdated Show resolved Hide resolved
@danez
Copy link
Member Author

danez commented Feb 22, 2019

Okay so I added fixes for flow:

  • declare module {} has it's own scope now
  • type and opaque type are now registered as lexical declaration, so the are handled the same as let or const

I also added tests for TS to ensure types do not count as duplicate declarations of other lexical declarations.

Any further additions for flow and typescript need changes to the logic in how duplicate declarations are checked. But the problem is that there is no easy way to extend the scope handler, as any addition (for example a new scope group for typescript type declarations) will need adjustments to all other parts of the scope tracking logic, so that lexical and function declarations are checked correctly against for example flow interfaces.
The only way to achieve correct scope tracking for flow and TS is to check on initialization which language we are parsing and depending on that choose a corresponding ScopeHandler. This ScopeHandlers for JS, TS and flow ultimately will need to be copy and pasted and kept in sync for bug fixes as I do not see a way to easy overwrite a subset of the logic of the duplicate detection algorithm for above reasons.

For now this PR does not introduce any duplicate checks for flow an ts, besides the ones mentions above, and we can follow up in a separate PR.

@danez danez added the PR: Needs Review A pull request awaiting more approvals label Feb 22, 2019
Copy link
Member

@nicolo-ribaudo nicolo-ribaudo left a comment

Choose a reason for hiding this comment

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

This PR looks good, I left some last minor comments.

  • Could you add a test that the first code throws while the second doesn't, in script scope? (I couldn't find it, but maybe it already exists? I searched for var in the diff)
    {
      function f() {}
      var f;
    }
    function f() {}
    var f;

packages/babel-parser/src/parser/statement.js Outdated Show resolved Hide resolved
packages/babel-parser/src/parser/util.js Outdated Show resolved Hide resolved
Parser: Spec Compliance, Refactoring and Performance automation moved this from In progress to Reviewed Feb 23, 2019
@danez danez added this to the v7.4.0 milestone Feb 24, 2019
@danez danez added PR: Ready to be Merged A pull request with already two approvals, but waiting for the next minor release and removed PR: Needs Review A pull request awaiting more approvals labels Feb 24, 2019
@danez danez merged commit a739114 into babel:master Feb 25, 2019
Parser: Spec Compliance, Refactoring and Performance automation moved this from Reviewed to Done Feb 25, 2019
@danez danez deleted the scope-tracking branch February 25, 2019 19:04
alanshaw added a commit to pull-stream/stream-to-pull-stream that referenced this pull request Mar 20, 2019
This started causing problems when babel released this change yesterday babel/babel#9493

resolves #15
alanshaw added a commit to ipfs/js-ipfs that referenced this pull request Mar 20, 2019
Pending resolution of pull-stream/stream-to-pull-stream#16. The extra `destroy` function causes babel to throw after babel/babel#9493 was merged and released.

License: MIT
Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
alanshaw added a commit to ipfs/js-ipfs that referenced this pull request Mar 20, 2019
Pending resolution of pull-stream/stream-to-pull-stream#16. The extra `destroy` function causes babel to throw after babel/babel#9493 was merged and released.

License: MIT
Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
@lock lock bot added the outdated A closed issue/PR that is archived due to age. Recommended to make a new issue label Oct 4, 2019
@lock lock bot locked as resolved and limited conversation to collaborators Oct 4, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
outdated A closed issue/PR that is archived due to age. Recommended to make a new issue pkg: parser PR: Ready to be Merged A pull request with already two approvals, but waiting for the next minor release PR: Spec Compliance 👓 A type of pull request used for our changelog categories
Projects
No open projects
Development

Successfully merging this pull request may close these issues.

Duplicate definitions of variables should throw syntax error Move SyntaxErrors to Babylon from Babel (T7410)
4 participants