You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* upstream/master: (36 commits)
Update baselines (microsoft#39000)
Make isEntityNameVisible duplicate the node builder logic to always consider type parameters as visible if they are the resolution result (microsoft#38921)
Schedule failed lookup updates (microsoft#38560)
Remove non null assertion on oldSourceFile.resolvedModules (microsoft#38984)
use blocklist instead of blacklist (microsoft#38988)
LEGO: check in for master to temporary branch.
Deprecate reloadFs so the tests are more clear in what they are achieving and its easier to track changed behaviour (microsoft#38954)
LEGO: check in for master to temporary branch.
LEGO: check in for master to temporary branch.
Make `hasCorrectArity` handle tuples properly
fix error when use spread arguments twice
fix(38081): allow transforming object binding to named imports
Accept baseline
fix names
Fix type and simplify code
accept new baseline
fix rebase conflict
add missing semi
Add more check
fix mission baseline
...
const { left, operatorToken, right } = binaryExpression;
22463
22472
switch (operatorToken.kind) {
22464
22473
case SyntaxKind.EqualsToken:
22474
+
case SyntaxKind.AmpersandAmpersandEqualsToken:
22475
+
case SyntaxKind.BarBarEqualsToken:
22476
+
case SyntaxKind.QuestionQuestionEqualsToken:
22465
22477
if (node !== right) {
22466
22478
return undefined;
22467
22479
}
@@ -25054,22 +25066,40 @@ namespace ts {
25054
25066
effectiveParameterCount = args.length === 0 ? effectiveParameterCount : 1; // class may have argumentless ctor functions - still resolve ctor and compare vs props member type
25055
25067
effectiveMinimumArguments = Math.min(effectiveMinimumArguments, 1); // sfc may specify context argument - handled by framework and not typechecked
25056
25068
}
25069
+
else if (!node.arguments) {
25070
+
// This only happens when we have something of the form: 'new C'
0 commit comments