-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Accept Public API changes that are causing test failures #21214
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
Conversation
@@ -1800,7 +1800,6 @@ declare namespace ts { | |||
NoTruncation = 1, | |||
WriteArrayAsGenericType = 2, | |||
WriteDefaultSymbolWithoutName = 4, | |||
UseStructuralFallback = 8, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@weswigham, this was changed in #21203. Is this intended to be part of the public API?
@@ -1827,7 +1826,6 @@ declare namespace ts { | |||
NoTruncation = 1, | |||
WriteArrayAsGenericType = 2, | |||
WriteDefaultSymbolWithoutName = 4, | |||
UseStructuralFallback = 8, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@weswigham, this was changed in #21203. Is this intended to be part of the public API?
function forEachLeadingCommentRange<T, U>(text: string, pos: number, cb: (pos: number, end: number, kind: CommentKind, hasTrailingNewLine: boolean, state: T) => U, state: T): U | undefined; | ||
function forEachTrailingCommentRange<U>(text: string, pos: number, cb: (pos: number, end: number, kind: CommentKind, hasTrailingNewLine: boolean) => U): U | undefined; | ||
function forEachTrailingCommentRange<T, U>(text: string, pos: number, cb: (pos: number, end: number, kind: CommentKind, hasTrailingNewLine: boolean, state: T) => U, state: T): U | undefined; | ||
function forEachLeadingCommentRange<T, U>(text: string, pos: number, cb: (pos: number, end: number, kind: CommentKind, hasTrailingNewLine: boolean, state: T) => U, state?: T): U | undefined; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NakedTypeVariable = 1, | ||
MappedType = 2, | ||
ReturnType = 4, | ||
Contravariant = 1, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ahejlsberg this changed in #21157. Are these changes intended to be part of the public API?
Please ignore. It looks like there may have been an issue building locally with gulp that was causing this. |
Several recent PRs (#21190, #21157, #21203) have pushed changes that resulted in public API changes, however the public API was not updated in the tests.