mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 03:31:45 +03:00
22 lines
489 B
TypeScript
22 lines
489 B
TypeScript
|
class Point {
|
||
|
constructor(public x: number, public y: number) { }
|
||
|
|
||
|
static Origin(): Point { return { x: 0, y: 0 }; }
|
||
|
}
|
||
|
|
||
|
module Point {
|
||
|
function Origin() { return ""; }// not an error, since not exported
|
||
|
}
|
||
|
|
||
|
|
||
|
module A {
|
||
|
export class Point {
|
||
|
constructor(public x: number, public y: number) { }
|
||
|
|
||
|
static Origin(): Point { return { x: 0, y: 0 }; }
|
||
|
}
|
||
|
|
||
|
export module Point {
|
||
|
function Origin() { return ""; }// not an error since not exported
|
||
|
}
|
||
|
}
|