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 {
979979 export type AssignmentOperator = SyntaxKind . EqualsToken | CompoundAssignmentOperator ;
980980 export type AssignmentOperatorOrHigher = SyntaxKind . QuestionQuestionToken | LogicalOperatorOrHigher | AssignmentOperator ;
981981 export type BinaryOperator = AssignmentOperatorOrHigher | SyntaxKind . CommaToken ;
982+ export type LogicalOrCoalescingAssignmentOperator = SyntaxKind . AmpersandAmpersandEqualsToken | SyntaxKind . BarBarEqualsToken | SyntaxKind . QuestionQuestionEqualsToken ;
982983 export type BinaryOperatorToken = Token < BinaryOperator > ;
983984 export interface BinaryExpression extends Expression , Declaration {
984985 kind : SyntaxKind . BinaryExpression ;
Original file line number Diff line number Diff line change @@ -979,6 +979,7 @@ declare namespace ts {
979979 export type AssignmentOperator = SyntaxKind . EqualsToken | CompoundAssignmentOperator ;
980980 export type AssignmentOperatorOrHigher = SyntaxKind . QuestionQuestionToken | LogicalOperatorOrHigher | AssignmentOperator ;
981981 export type BinaryOperator = AssignmentOperatorOrHigher | SyntaxKind . CommaToken ;
982+ export type LogicalOrCoalescingAssignmentOperator = SyntaxKind . AmpersandAmpersandEqualsToken | SyntaxKind . BarBarEqualsToken | SyntaxKind . QuestionQuestionEqualsToken ;
982983 export type BinaryOperatorToken = Token < BinaryOperator > ;
983984 export interface BinaryExpression extends Expression , Declaration {
984985 kind : SyntaxKind . BinaryExpression ;
You can’t perform that action at this time.
0 commit comments