TypeScript/tests/baselines/reference/argumentsReferenceInConstructor6_Js.types

18 lines
225 B
Plaintext

=== /a.js ===
class A {
>A : A
constructor() {
/**
* @type object
*/
this.foo = arguments;
>this.foo = arguments : IArguments
>this.foo : any
>this : this
>foo : any
>arguments : IArguments
}
}