diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/query/highlights/typescript/as.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/query/highlights/typescript/as.ts b/tests/query/highlights/typescript/as.ts new file mode 100644 index 000000000..b1f1533b4 --- /dev/null +++ b/tests/query/highlights/typescript/as.ts @@ -0,0 +1,8 @@ +import * as foo from 'foo'; +// ^ include + +export { foo as bar }; +// ^ include + +const n = 5 as number; +// ^ keyword |
