Skip to content

Commit 8f0de27

Browse files
committed
Accept new API baselines
1 parent 2d1af77 commit 8f0de27

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3525,7 +3525,7 @@ declare namespace ts {
35253525
function isCallExpression(node: Node): node is CallExpression;
35263526
function isCallChain(node: Node): node is CallChain;
35273527
function isOptionalChain(node: Node): node is PropertyAccessChain | ElementAccessChain | CallChain;
3528-
function isQuestionQuestionExpression(node: Node): boolean;
3528+
function isNullishCoalesce(node: Node): boolean;
35293529
function isNewExpression(node: Node): node is NewExpression;
35303530
function isTaggedTemplateExpression(node: Node): node is TaggedTemplateExpression;
35313531
function isTypeAssertion(node: Node): node is TypeAssertion;

tests/baselines/reference/api/typescript.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3525,7 +3525,7 @@ declare namespace ts {
35253525
function isCallExpression(node: Node): node is CallExpression;
35263526
function isCallChain(node: Node): node is CallChain;
35273527
function isOptionalChain(node: Node): node is PropertyAccessChain | ElementAccessChain | CallChain;
3528-
function isQuestionQuestionExpression(node: Node): boolean;
3528+
function isNullishCoalesce(node: Node): boolean;
35293529
function isNewExpression(node: Node): node is NewExpression;
35303530
function isTaggedTemplateExpression(node: Node): node is TaggedTemplateExpression;
35313531
function isTypeAssertion(node: Node): node is TypeAssertion;

0 commit comments

Comments
 (0)