TypeScript/tests/baselines/reference/argumentsReferenceInMethod7_Js.types

22 lines
334 B
Plaintext

=== /a.js ===
class A {
>A : A
m() {
>m : (...args: any[]) => void
/**
* @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
}
}