1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
//// [interfaceDeclaration4.ts]
// Import this module when test harness supports external modules. Also remove the internal module below.
// import Foo = require("interfaceDeclaration5")
module Foo {
export interface I1 { item: string; }
export class C1 { }
}
class C1 implements Foo.I1 {
public item:string;
}
// Allowed
interface I2 extends Foo.I1 {
item:string;
}
// Negative Case
interface I3 extends Foo.I1 {
item:number;
}
interface I4 extends Foo.I1 {
token:string;
}
// Err - not implemented item
class C2 implements I4 {
public token: string;
}
interface I5 extends Foo { }
// Negative case
interface I6 extends Foo.C1 { }
class C3 implements Foo.I1 { }
// Negative case
interface Foo.I1 { }
//// [interfaceDeclaration4.js]
// Import this module when test harness supports external modules. Also remove the internal module below.
// import Foo = require("interfaceDeclaration5")
var Foo;
(function (Foo) {
var C1 = /** @class */ (function () {
function C1() {
}
return C1;
}());
Foo.C1 = C1;
})(Foo || (Foo = {}));
var C1 = /** @class */ (function () {
function C1() {
}
return C1;
}());
// Err - not implemented item
var C2 = /** @class */ (function () {
function C2() {
}
return C2;
}());
var C3 = /** @class */ (function () {
function C3() {
}
return C3;
}());
I1;
{ }
|