@@ -28036,7 +28036,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
28036
28036
}
28037
28037
28038
28038
function getInstanceType(constructorType: Type, left: Expression, leftType: Type, right: Expression) {
28039
- // if rightType is an object type with a custom `[Symbol.hasInstance]` method, and that method has a type
28039
+ // if constructorType is an object type with a custom `[Symbol.hasInstance]` method, and that method has a type
28040
28040
// predicate, use the type predicate to perform narrowing. This allows normal `object` types to participate
28041
28041
// in `instanceof`, as per Step 2 of https://tc39.es/ecma262/#sec-instanceofoperator.
28042
28042
const hasInstanceMethodType = getSymbolHasInstanceMethodOfObjectType(constructorType);
@@ -33895,6 +33895,9 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
33895
33895
// If candidate is undefined, it means that no candidates had a suitable arity. In that case,
33896
33896
// skip the checkApplicableSignature check.
33897
33897
if (reportErrors) {
33898
+ // If the call expression is a synthetic call to a `[Symbol.hasInstance]` method then we will produce a head
33899
+ // message when reporting diagnostics that explains how we got to `right[Symbol.hasInstance](left)` from
33900
+ // `left instanceof right`, as it pertains to "Argument" related messages reported for the call.
33898
33901
if (!headMessage && isCallExpression(node) && isSyntheticHasInstanceMethodCall(node)) {
33899
33902
headMessage = Diagnostics.The_left_hand_side_of_an_instanceof_expression_must_be_assignable_to_the_first_argument_of_the_right_hand_side_s_Symbol_hasInstance_method;
33900
33903
}
@@ -34332,9 +34335,6 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
34332
34335
return resolveErrorCall(node);
34333
34336
}
34334
34337
34335
- // If the call expression is a synthetic call to a `[Symbol.hasInstance]` method then we will produce a head
34336
- // message when reporting diagnostics that explains how we got to `right[Symbol.hasInstance](left)` from
34337
- // `left instanceof right`, as it pertains to "Argument" related messages reported for the call.
34338
34338
return resolveCall(node, callSignatures, candidatesOutArray, checkMode, callChainFlags);
34339
34339
}
34340
34340
@@ -37201,7 +37201,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker {
37201
37201
}
37202
37202
if (!cache.hasSimpleUnrestrictedSingleCallSignature) {
37203
37203
// If rightType has a `[Symbol.hasInstance]` method that is not `(value: unknown) => boolean`, we
37204
- // must check the expression as if it were a call to `right[Symbol.hasInstance](left)1 . The call to
37204
+ // must check the expression as if it were a call to `right[Symbol.hasInstance](left)` . The call to
37205
37205
// `getResolvedSignature`, below, will check that leftType is assignable to the type of the first
37206
37206
// parameter.
37207
37207
const syntheticCall = createSyntheticHasInstanceMethodCall(left, leftType, right, rightType, hasInstanceMethodType);
0 commit comments