-
-
Notifications
You must be signed in to change notification settings - Fork 562
refactor(ast)!: move type_parameters
field to before extends
in TSInterfaceDeclaration
#10476
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
refactor(ast)!: move type_parameters
field to before extends
in TSInterfaceDeclaration
#10476
Conversation
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
cf88abf
to
dfcefff
Compare
6bb9adb
to
f809e9e
Compare
CodSpeed Instrumentation Performance ReportMerging #10476 will not alter performanceComparing Summary
|
Merge activity
|
f809e9e
to
eda2c5f
Compare
…TSInterfaceDeclaration` (#10476) ```ts interface Foo<T> extends Bar { } ``` Move `type_parameters` field (`<T>`) to before `extends` field (`Bar`), because it comes first.
dfcefff
to
69e1b15
Compare
…TSInterfaceDeclaration` (#10476) ```ts interface Foo<T> extends Bar { } ``` Move `type_parameters` field (`<T>`) to before `extends` field (`Bar`), because it comes first.
69e1b15
to
6890ad1
Compare
eda2c5f
to
7212803
Compare
…TSInterfaceDeclaration` (#10476) ```ts interface Foo<T> extends Bar { } ``` Move `type_parameters` field (`<T>`) to before `extends` field (`Bar`), because it comes first.
6890ad1
to
99d82db
Compare
Move
type_parameters
field (<T>
) to beforeextends
field (Bar
), because it comes first.