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
// @strict: true/** @this {number} */functionnothis/*1*/(){this// noImplicitThis error here}nothis()// `this` not required to call
Quickinfo at /*1*/, and type baselines, print the type of nothis as (this: number) => void, even in Typescript where the tag should be ignored. But the type checker still has this: any, so I think it's a bug inside typeToString.
The text was updated successfully, but these errors were encountered:
Quickinfo at
/*1*/
, and type baselines, print the type ofnothis
as(this: number) => void
, even in Typescript where the tag should be ignored. But the type checker still hasthis: any
, so I think it's a bug insidetypeToString
.The text was updated successfully, but these errors were encountered: