TypeScript/tests/baselines/reference/argumentsReferenceInConstructor7_Js.types

20 lines
311 B
Plaintext

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