File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
tests/baselines/reference/api Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -979,6 +979,7 @@ declare namespace ts {
979
979
export type AssignmentOperator = SyntaxKind . EqualsToken | CompoundAssignmentOperator ;
980
980
export type AssignmentOperatorOrHigher = SyntaxKind . QuestionQuestionToken | LogicalOperatorOrHigher | AssignmentOperator ;
981
981
export type BinaryOperator = AssignmentOperatorOrHigher | SyntaxKind . CommaToken ;
982
+ export type LogicalOrCoalescingAssignmentOperator = SyntaxKind . AmpersandAmpersandEqualsToken | SyntaxKind . BarBarEqualsToken | SyntaxKind . QuestionQuestionEqualsToken ;
982
983
export type BinaryOperatorToken = Token < BinaryOperator > ;
983
984
export interface BinaryExpression extends Expression , Declaration {
984
985
kind : SyntaxKind . BinaryExpression ;
Original file line number Diff line number Diff line change @@ -979,6 +979,7 @@ declare namespace ts {
979
979
export type AssignmentOperator = SyntaxKind . EqualsToken | CompoundAssignmentOperator ;
980
980
export type AssignmentOperatorOrHigher = SyntaxKind . QuestionQuestionToken | LogicalOperatorOrHigher | AssignmentOperator ;
981
981
export type BinaryOperator = AssignmentOperatorOrHigher | SyntaxKind . CommaToken ;
982
+ export type LogicalOrCoalescingAssignmentOperator = SyntaxKind . AmpersandAmpersandEqualsToken | SyntaxKind . BarBarEqualsToken | SyntaxKind . QuestionQuestionEqualsToken ;
982
983
export type BinaryOperatorToken = Token < BinaryOperator > ;
983
984
export interface BinaryExpression extends Expression , Declaration {
984
985
kind : SyntaxKind . BinaryExpression ;
You can’t perform that action at this time.
0 commit comments