mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
90 lines
1.4 KiB
TypeScript
90 lines
1.4 KiB
TypeScript
|
// M is optional and S contains no property with the same name as M
|
||
|
// N is optional and T contains no property with the same name as N
|
||
|
|
||
|
class Base { foo: string; }
|
||
|
class Derived extends Base { bar: string; }
|
||
|
class Derived2 extends Derived { baz: string; }
|
||
|
|
||
|
module TargetHasOptional {
|
||
|
// targets
|
||
|
interface C {
|
||
|
opt?: Base
|
||
|
}
|
||
|
var c: C;
|
||
|
|
||
|
var a: { opt?: Base; }
|
||
|
var b: typeof a = { opt: new Base() }
|
||
|
|
||
|
// sources
|
||
|
interface D {
|
||
|
other: Base;
|
||
|
}
|
||
|
interface E {
|
||
|
other: Derived;
|
||
|
}
|
||
|
interface F {
|
||
|
other?: Derived;
|
||
|
}
|
||
|
var d: D;
|
||
|
var e: E;
|
||
|
var f: F;
|
||
|
|
||
|
// disallowed by weak type checking
|
||
|
c = d;
|
||
|
c = e;
|
||
|
c = f;
|
||
|
a = d;
|
||
|
a = e;
|
||
|
a = f;
|
||
|
b = d;
|
||
|
b = e;
|
||
|
b = f;
|
||
|
|
||
|
// ok
|
||
|
c = a;
|
||
|
a = c;
|
||
|
b = a;
|
||
|
b = c;
|
||
|
}
|
||
|
|
||
|
module SourceHasOptional {
|
||
|
// targets
|
||
|
interface C {
|
||
|
opt: Base
|
||
|
}
|
||
|
var c: C;
|
||
|
|
||
|
var a: { opt: Base; }
|
||
|
var b = { opt: new Base() }
|
||
|
|
||
|
// sources
|
||
|
interface D {
|
||
|
other?: Base;
|
||
|
}
|
||
|
interface E {
|
||
|
other?: Derived;
|
||
|
}
|
||
|
interface F {
|
||
|
other: Derived;
|
||
|
}
|
||
|
var d: D;
|
||
|
var e: E;
|
||
|
var f: F;
|
||
|
|
||
|
c = d; // error
|
||
|
c = e; // error
|
||
|
c = f; // error
|
||
|
c = a; // ok
|
||
|
|
||
|
a = d; // error
|
||
|
a = e; // error
|
||
|
a = f; // error
|
||
|
a = c; // ok
|
||
|
|
||
|
b = d; // error
|
||
|
b = e; // error
|
||
|
b = f; // error
|
||
|
b = a; // ok
|
||
|
b = c; // ok
|
||
|
}
|