HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/shop.komma.nl/node_modules/@vue/cli/node_modules/recast/parsers/acorn.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
// This module is suitable for passing as options.parser when calling
// recast.parse to process JavaScript code with Acorn:
//
//   const ast = recast.parse(source, {
//     parser: require("recast/parsers/acorn")
//   });
//
var util_1 = require("../lib/util");
function parse(source, options) {
    var comments = [];
    var tokens = [];
    var ast = require("acorn").parse(source, {
        allowHashBang: true,
        allowImportExportEverywhere: true,
        allowReturnOutsideFunction: true,
        ecmaVersion: util_1.getOption(options, "ecmaVersion", 8),
        sourceType: util_1.getOption(options, "sourceType", "module"),
        locations: true,
        onComment: comments,
        onToken: tokens,
    });
    if (!ast.comments) {
        ast.comments = comments;
    }
    if (!ast.tokens) {
        ast.tokens = tokens;
    }
    return ast;
}
exports.parse = parse;
;