Rename flow AST Type ExistentialTypeParam to ExistsTypeAnnotation (#322)

This commit is contained in:
Toru Kobayashi
2017-01-28 03:42:15 +09:00
committed by Daniel Tschinder
parent bd001767fb
commit c424156751
4 changed files with 8 additions and 8 deletions

View File

@@ -676,7 +676,7 @@ pp.flowParsePrimaryType = function () {
case tt.star:
this.next();
return this.finishNode(node, "ExistentialTypeParam");
return this.finishNode(node, "ExistsTypeAnnotation");
default:
if (this.state.type.keyword === "typeof") {