unboundedpress/node_modules/acorn-es7-plugin/test/xxx.js
2019-07-23 04:28:47 +00:00

16 lines
418 B
JavaScript

(function () {
"use strict";
const acorn = require('acorn'); // 3.x
require('..')(acorn);
var code = "(async function x(){ console.log('hello'); }());";
var ast = acorn.parse(code,{
// Specify use of the plugin
plugins:{asyncawait:true},
// Specify the ecmaVersion
ecmaVersion: 7
}) ;
// Show the AST
console.log(JSON.stringify(ast,null,2)) ;
}());