From 23ac2319afabb7bf10a7a043dd339bad4685d02b Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Thu, 7 May 2015 20:11:14 +0100 Subject: [PATCH] add Super node type to ast-types patch --- src/babel/patch.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/babel/patch.js b/src/babel/patch.js index 09afdbd301..f8f5dcf95e 100644 --- a/src/babel/patch.js +++ b/src/babel/patch.js @@ -33,6 +33,9 @@ def("DoExpression") .build("body") .field("body", [def("Statement")]); +def("Super") + .bases("Expression"); + def("ExportDefaultDeclaration") .bases("Declaration") .build("declaration")