Skip to content
This repository has been archived by the owner on Jan 19, 2019. It is now read-only.

Commit

Permalink
Fix: add missing TSSymbolKeyword type (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
ikatyang authored and JamesHenry committed Sep 25, 2017
1 parent e10aab8 commit 9c71a62
Show file tree
Hide file tree
Showing 3 changed files with 460 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/ast-node-types.js
Expand Up @@ -139,6 +139,7 @@ module.exports = {
TSReadonlyKeyword: "TSReadonlyKeyword",
TSStaticKeyword: "TSStaticKeyword",
TSStringKeyword: "TSStringKeyword",
TSSymbolKeyword: "TSSymbolKeyword",
TSTypeLiteral: "TSTypeLiteral",
TSTypePredicate: "TSTypePredicate",
TSTypeReference: "TSTypeReference",
Expand Down
1 change: 1 addition & 0 deletions tests/fixtures/typescript/basics/symbol-type-param.src.ts
@@ -0,0 +1 @@
function test(abc: Map<symbol, string>) {}

0 comments on commit 9c71a62

Please sign in to comment.