From dcb295c314b87022dfbb1e22db834be114d9b8d8 Mon Sep 17 00:00:00 2001 From: yann300 Date: Thu, 11 Jan 2018 17:00:58 +0100 Subject: [PATCH] Fix translation legacyAST on old compiler --- translate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translate.js b/translate.js index 9ec4503b..af6ae014 100644 --- a/translate.js +++ b/translate.js @@ -103,7 +103,7 @@ function translateJsonCompilerOutput (output) { for (var source in output['sources']) { ret['sources'][source] = { id: sourceMap[source], - legacyAST: output['sources'][source] + legacyAST: output['sources'][source].AST }; }