TypeScript/tests/baselines/reference/assignToPrototype1.types

23 lines
584 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/assignToPrototype1.ts ===
declare class Point {
>Point : Point
2014-08-15 23:33:16 +02:00
add(dx: number, dy: number): void;
>add : (dx: number, dy: number) => void
>dx : number
>dy : number
2014-08-15 23:33:16 +02:00
}
Point.prototype.add = function(dx, dy) {
2014-08-22 03:39:46 +02:00
>Point.prototype.add = function(dx, dy) {} : (dx: number, dy: number) => void
>Point.prototype.add : (dx: number, dy: number) => void
>Point.prototype : Point
>Point : typeof Point
>prototype : Point
>add : (dx: number, dy: number) => void
2014-08-22 03:39:46 +02:00
>function(dx, dy) {} : (dx: number, dy: number) => void
>dx : number
>dy : number
2014-08-15 23:33:16 +02:00
};