Open calmcl1 opened 3 years ago
In JS files (TS files not tested), any null-coalescing operators ?? are split into two separate characters: ? ?, which breaks parsing as this then becomes an incomplete ternary statement (x ? y : z).
??
? ?
x ? y : z
In JS files (TS files not tested), any null-coalescing operators
??
are split into two separate characters:? ?
, which breaks parsing as this then becomes an incomplete ternary statement (x ? y : z
).