From cedb8a416bdeaf5f86c14bb143092a5a804af968 Mon Sep 17 00:00:00 2001 From: Adrian Heine Date: Fri, 27 Oct 2017 12:04:46 +0200 Subject: [PATCH] ImportDeclarations have no kind property --- src/loose/statement.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/loose/statement.js b/src/loose/statement.js index 3b6f4a19f..19e96b4c1 100644 --- a/src/loose/statement.js +++ b/src/loose/statement.js @@ -378,7 +378,6 @@ lp.parseImport = function() { if (this.tok.type === tt.string) { node.specifiers = [] node.source = this.parseExprAtom() - node.kind = "" } else { let elt if (this.tok.type === tt.name && this.tok.value !== "from") {