Skip to content

Commit a4aa9d8

Browse files
committed
https://github.com/TypeStrong/atom-typescript/issues/613
1 parent f9226c9 commit a4aa9d8

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

grammartests/611/implements.js

Whitespace-only changes.

grammartests/611/implements.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
declare module "highlighting" {
2+
3+
export interface I {}
4+
5+
export class E0 extends Error {
6+
OK: string
7+
}
8+
export class E1 extends Error implements I {}
9+
export class E2 extends Error {
10+
NotOK: string
11+
}
12+
}

grammartests/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
],
1414
"files": [
1515
"./611/generic.ts",
16+
"./611/implements.ts",
1617
"./grammartest.ts"
1718
]
1819
}

0 commit comments

Comments
 (0)