8000 Check using "super" before "this" lexically by yuit · Pull Request #6860 · microsoft/TypeScript · GitHub
[go: up one dir, main page]

Skip to content

Check using "super" before "this" lexically #6860

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

Merged
merged 11 commits into from
Feb 11, 2016
Merged
Prev Previous commit
Next Next commit
Merge branch 'release-1.8' into checksuperbeforethislexically
  • Loading branch information
Kanchalai Tanglertsampan committed Feb 8, 2016
commit 1cfce12001fb09e529630e7fd9ebf8975bee2e39
3 changes: 2 additions & 1 deletion src/compiler/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2068,7 +2068,8 @@ namespace ts {
CapturedBlockScopedBinding = 0x00020000, // Block-scoped binding that is captured in some function
BlockScopedBindingInLoop = 0x00040000, // Block-scoped binding with declaration nested inside iteration statement
ClassWithBodyScopedClassBinding = 0x0080000, // Decorated class that contains a binding to itself inside of the class body.
BodyScopedClassBinding = 0x00100000, // Binding to a decorated class inside of the class's body.
BodyScopedClassBinding = 0x00100000, // Binding to a decorated class inside of the class's body.
NeedsLoopOutParameter = 0x00200000, // Block scoped binding whose value should be explicitly copied outside of the converted loop
}

/* @internal */
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0