first commit
This commit is contained in:
296
node_modules/terser/CHANGELOG.md
generated
vendored
Normal file
296
node_modules/terser/CHANGELOG.md
generated
vendored
Normal file
@@ -0,0 +1,296 @@
|
||||
# Changelog
|
||||
|
||||
## v4.8.0
|
||||
|
||||
- Support for numeric separators (`million = 1_000_000`) was added.
|
||||
- Assigning properties to a class is now assumed to be pure.
|
||||
- Fixed bug where `yield` wasn't considered a valid property key in generators.
|
||||
|
||||
## v4.7.0
|
||||
|
||||
- A bug was fixed where an arrow function would have the wrong size
|
||||
- `arguments` object is now considered safe to retrieve properties from (useful for `length`, or `0`) even when `pure_getters` is not set.
|
||||
- Fixed erroneous `const` declarations without value (which is invalid) in some corner cases when using `collapse_vars`.
|
||||
|
||||
## v4.6.13
|
||||
|
||||
- Fixed issue where ES5 object properties were being turned into ES6 object properties due to more lax unicode rules.
|
||||
- Fixed parsing of BigInt with lowercase `e` in them.
|
||||
|
||||
## v4.6.12
|
||||
|
||||
- Fixed subtree comparison code, making it see that `[1,[2, 3]]` is different from `[1, 2, [3]]`
|
||||
- Printing of unicode identifiers has been improved
|
||||
|
||||
## v4.6.11
|
||||
|
||||
- Read unused classes' properties and method keys, to figure out if they use other variables.
|
||||
- Prevent inlining into block scopes when there are name collisions
|
||||
- Functions are no longer inlined into parameter defaults, because they live in their own special scope.
|
||||
- When inlining identity functions, take into account the fact they may be used to drop `this` in function calls.
|
||||
- Nullish coalescing operator (`x ?? y`), plus basic optimization for it.
|
||||
- Template literals in binary expressions such as `+` have been further optimized
|
||||
|
||||
## v4.6.10
|
||||
|
||||
- Do not use reduce_vars when classes are present
|
||||
|
||||
## v4.6.9
|
||||
|
||||
- Check if block scopes actually exist in blocks
|
||||
|
||||
## v4.6.8
|
||||
|
||||
- Take into account "executed bits" of classes like static properties or computed keys, when checking if a class evaluation might throw or have side effects.
|
||||
|
||||
## v4.6.7
|
||||
|
||||
- Some new performance gains through a `AST_Node.size()` method which measures a node's source code length without printing it to a string first.
|
||||
- An issue with setting `--comments` to `false` in the CLI has been fixed.
|
||||
- Fixed some issues with inlining
|
||||
- `unsafe_symbols` compress option was added, which turns `Symbol("name")` into just `Symbol()`
|
||||
- Brought back compress performance improvement through the `AST_Node.equivalent_to(other)` method (which was reverted in v4.6.6).
|
||||
|
||||
## v4.6.6
|
||||
|
||||
(hotfix release)
|
||||
|
||||
- Reverted code to 4.6.4 to allow for more time to investigate an issue.
|
||||
|
||||
## v4.6.5 (REVERTED)
|
||||
|
||||
- Improved compress performance through using a new method to see if two nodes are equivalent, instead of printing them to a string.
|
||||
|
||||
## v4.6.4
|
||||
|
||||
- The `"some"` value in the `comments` output option now preserves `@lic` and other important comments when using `//`
|
||||
- `</script>` is now better escaped in regex, and in comments, when using the `inline_script` output option
|
||||
- Fixed an issue when transforming `new RegExp` into `/.../` when slashes are included in the source
|
||||
- `AST_Node.prototype.constructor` now exists, allowing for easier debugging of crashes
|
||||
- Multiple if statements with the same consequents are now collapsed
|
||||
- Typescript typings improvements
|
||||
- Optimizations while looking for surrogate pairs in strings
|
||||
|
||||
## v4.6.3
|
||||
|
||||
- Annotations such as `/*#__NOINLINE__*/` and `/*#__PURE__*/` may now be preserved using the `preserve_annotations` output option
|
||||
- A TypeScript definition update for the `keep_quoted` output option.
|
||||
|
||||
## v4.6.2
|
||||
|
||||
- A bug where functions were inlined into other functions with scope conflicts has been fixed.
|
||||
- `/*#__NOINLINE__*/` annotation fixed for more use cases where inlining happens.
|
||||
|
||||
## v4.6.1
|
||||
|
||||
- Fixed an issue where a class is duplicated by reduce_vars when there's a recursive reference to the class.
|
||||
|
||||
## v4.6.0
|
||||
|
||||
- Fixed issues with recursive class references.
|
||||
- BigInt evaluation has been prevented, stopping Terser from evaluating BigInts like it would do regular numbers.
|
||||
- Class property support has been added
|
||||
|
||||
## v4.5.1
|
||||
|
||||
(hotfix release)
|
||||
|
||||
- Fixed issue where `() => ({})[something]` was not parenthesised correctly.
|
||||
|
||||
## v4.5.0
|
||||
|
||||
- Inlining has been improved
|
||||
- An issue where keep_fnames combined with functions declared through variables was causing name shadowing has been fixed
|
||||
- You can now set the ES version through their year
|
||||
- The output option `keep_numbers` has been added, which prevents Terser from turning `1000` into `1e3` and such
|
||||
- Internal small optimisations and refactors
|
||||
|
||||
## v4.4.3
|
||||
|
||||
- Number and BigInt parsing has been fixed
|
||||
- `/*#__INLINE__*/` annotation fixed for arrow functions with non-block bodies.
|
||||
- Functional tests have been added, using [this repository](https://github.com/terser/terser-functional-tests).
|
||||
- A memory leak, where the entire AST lives on after compression, has been plugged.
|
||||
|
||||
## v4.4.2
|
||||
|
||||
- Fixed a problem with inlining identity functions
|
||||
|
||||
## v4.4.1
|
||||
|
||||
*note:* This introduced a feature, therefore it should have been a minor release.
|
||||
|
||||
- Fixed a crash when `unsafe` was enabled.
|
||||
- An issue has been fixed where `let` statements might be collapsed out of their scope.
|
||||
- Some error messages have been improved by adding quotes around variable names.
|
||||
|
||||
## v4.4.0
|
||||
|
||||
- Added `/*#__INLINE__*/` and `/*#__NOINLINE__*/` annotations for calls. If a call has one of these, it either forces or forbids inlining.
|
||||
|
||||
## v4.3.11
|
||||
|
||||
- Fixed a problem where `window` was considered safe to access, even though there are situations where it isn't (Node.js, workers...)
|
||||
- Fixed an error where `++` and `--` were considered side-effect free
|
||||
- `Number(x)` now needs both `unsafe` and and `unsafe_math` to be compressed into `+x` because `x` might be a `BigInt`
|
||||
- `keep_fnames` now correctly supports regexes when the function is in a variable declaration
|
||||
|
||||
## v4.3.10
|
||||
|
||||
- Fixed syntax error when repeated semicolons were encountered in classes
|
||||
- Fixed invalid output caused by the creation of empty sequences internally
|
||||
- Scopes are now updated when scopes are inlined into them
|
||||
|
||||
## v4.3.9
|
||||
- Fixed issue with mangle's `keep_fnames` option, introduced when adding code to keep variable names of anonymous functions
|
||||
|
||||
## v4.3.8
|
||||
|
||||
- Typescript typings fix
|
||||
|
||||
## v4.3.7
|
||||
|
||||
- Parsing of regex options in the CLI (which broke in v4.3.5) was fixed.
|
||||
- typescript definition updates
|
||||
|
||||
## v4.3.6
|
||||
|
||||
(crash hotfix)
|
||||
|
||||
## v4.3.5
|
||||
|
||||
- Fixed an issue with DOS line endings strings separated by `\` and a new line.
|
||||
- Improved fix for the output size regression related to unused references within the extends section of a class.
|
||||
- Variable names of anonymous functions (eg: `const x = () => { ... }` or `var func = function () {...}`) are now preserved when keep_fnames is true.
|
||||
- Fixed performance degradation introduced for large payloads in v4.2.0
|
||||
|
||||
## v4.3.4
|
||||
|
||||
- Fixed a regression where the output size was increased when unused classes were referred to in the extends clause of a class.
|
||||
- Small typescript typings fixes.
|
||||
- Comments with `@preserve`, `@license`, `@cc_on` as well as comments starting with `/*!` and `/**!` are now preserved by default.
|
||||
|
||||
## v4.3.3
|
||||
|
||||
- Fixed a problem where parsing template strings would mix up octal notation and a slash followed by a zero representing a null character.
|
||||
- Started accepting the name `async` in destructuring arguments with default value.
|
||||
- Now Terser takes into account side effects inside class `extends` clauses.
|
||||
- Added parens whenever there's a comment between a return statement and the returned value, to prevent issues with ASI.
|
||||
- Stopped using raw RegExp objects, since the spec is going to continue to evolve. This ensures Terser is able to process new, unknown RegExp flags and features. This is a breaking change in the AST node AST_RegExp.
|
||||
|
||||
## v4.3.2
|
||||
|
||||
- Typescript typing fix
|
||||
- Ensure that functions can't be inlined, by reduce_vars, into places where they're accessing variables with the same name, but from somewhere else.
|
||||
|
||||
## v4.3.1
|
||||
|
||||
- Fixed an issue from 4.3.0 where any block scope within a for loop erroneously had its parent set to the function scopee
|
||||
- Fixed an issue where compressing IIFEs with argument expansions would result in some parameters becoming undefined
|
||||
- addEventListener options argument's properties are now part of the DOM properties list.
|
||||
|
||||
## v4.3.0
|
||||
|
||||
- Do not drop computed object keys with side effects
|
||||
- Functions passed to other functions in calls are now wrapped in parentheses by default, which speeds up loading most modules
|
||||
- Objects with computed properties are now less likely to be hoisted
|
||||
- Speed and memory efficiency optimizations
|
||||
- Fixed scoping issues with `try` and `switch`
|
||||
|
||||
## v4.2.1
|
||||
|
||||
- Minor refactors
|
||||
- Fixed a bug similar to #369 in collapse_vars
|
||||
- Functions can no longer be inlined into a place where they're going to be compared with themselves.
|
||||
- reduce_funcs option is now legacy, as using reduce_vars without reduce_funcs caused some weird corner cases. As a result, it is now implied in reduce_vars and can't be turned off without turning off reduce_vars.
|
||||
- Bug which would cause a random stack overflow has now been fixed.
|
||||
|
||||
## v4.2.0
|
||||
|
||||
- When the source map URL is `inline`, don't write it to a file.
|
||||
- Fixed output parens when a lambda literal is the tag on a tagged template string.
|
||||
- The `mangle.properties.undeclared` option was added. This enables the property mangler to mangle properties of variables which can be found in the name cache, but whose properties are not known to this Terser run.
|
||||
- The v8 bug where the toString and source representations of regexes like `RegExp("\\\n")` includes an actual newline is now fixed.
|
||||
- Now we're guaranteed to not have duplicate comments in the output
|
||||
- Domprops updates
|
||||
|
||||
## v4.1.4
|
||||
|
||||
- Fixed a crash when inlining a function into somewhere else when it has interdependent, non-removable variables.
|
||||
|
||||
## v4.1.3
|
||||
|
||||
- Several issues with the `reduce_vars` option were fixed.
|
||||
- Starting this version, we only have a dist/bundle.min.js
|
||||
|
||||
## v4.1.2
|
||||
|
||||
- The hotfix was hotfixed
|
||||
|
||||
## v4.1.1
|
||||
|
||||
- Fixed a bug where toplevel scopes were being mixed up with lambda scopes
|
||||
|
||||
## v4.1.0
|
||||
|
||||
- Internal functions were replaced by `Object.assign`, `Array.prototype.some`, `Array.prototype.find` and `Array.prototype.every`.
|
||||
- A serious issue where some ESM-native code was broken was fixed.
|
||||
- Performance improvements were made.
|
||||
- Support for BigInt was added.
|
||||
- Inline efficiency was improved. Functions are now being inlined more proactively instead of being inlined only after another Compressor pass.
|
||||
|
||||
## v4.0.2
|
||||
|
||||
(Hotfix release. Reverts unmapped segments PR [#342](https://github.com/terser/terser/pull/342), which will be put back on Terser when the upstream issue is resolved)
|
||||
|
||||
## v4.0.1
|
||||
|
||||
- Collisions between the arguments of inlined functions and names in the outer scope are now being avoided while inlining
|
||||
- Unmapped segments are now preserved when compressing a file which has source maps
|
||||
- Default values of functions are now correctly converted from Mozilla AST to Terser AST
|
||||
- JSON ⊂ ECMAScript spec (if you don't know what this is you don't need to)
|
||||
- Export AST_* classes to library users
|
||||
- Fixed issue with `collapse_vars` when functions are created with the same name as a variable which already exists
|
||||
- Added `MutationObserverInit` (Object with options for initialising a mutation observer) properties to the DOM property list
|
||||
- Custom `Error` subclasses are now internally used instead of old-school Error inheritance hacks.
|
||||
- Documentation fixes
|
||||
- Performance optimizations
|
||||
|
||||
## v4.0.0
|
||||
|
||||
- **breaking change**: The `variables` property of all scopes has become a standard JavaScript `Map` as opposed to the old bespoke `Dictionary` object.
|
||||
- Typescript definitions were fixed
|
||||
- `terser --help` was fixed
|
||||
- The public interface was cleaned up
|
||||
- Fixed optimisation of `Array` and `new Array`
|
||||
- Added the `keep_quoted=strict` mode to mangle_props, which behaves more like Google Closure Compiler by mangling all unquoted property names, instead of reserving quoted property names automatically.
|
||||
- Fixed parent functions' parameters being shadowed in some cases
|
||||
- Allowed Terser to run in a situation where there are custom functions attached to Object.prototype
|
||||
- And more bug fixes, optimisations and internal changes
|
||||
|
||||
## v3.17.0
|
||||
|
||||
- More DOM properties added to --mangle-properties's DOM property list
|
||||
- Closed issue where if 2 functions had the same argument name, Terser would not inline them together properly
|
||||
- Fixed issue with `hasOwnProperty.call`
|
||||
- You can now list files to minify in a Terser config file
|
||||
- Started replacing `new Array(<number>)` with an array literal
|
||||
- Started using ES6 capabilities like `Set` and the `includes` method for strings and arrays
|
||||
|
||||
## v3.16.1
|
||||
|
||||
- Fixed issue where Terser being imported with `import` would cause it not to work due to the `__esModule` property. (PR #254 was submitted, which was nice, but since it wasn't a pure commonJS approach I decided to go with my own solution)
|
||||
|
||||
## v3.16.0
|
||||
|
||||
- No longer leaves names like Array or Object or window as a SimpleStatement (statement which is just a single expression).
|
||||
- Add support for sections sourcemaps (IndexedSourceMapConsumer)
|
||||
- Drops node.js v4 and starts using commonJS
|
||||
- Is now built with rollup
|
||||
|
||||
## v3.15.0
|
||||
|
||||
- Inlined spread syntax (`[...[1, 2, 3], 4, 5] => [1, 2, 3, 4, 5]`) in arrays and objects.
|
||||
- Fixed typo in compressor warning
|
||||
- Fixed inline source map input bug
|
||||
- Fixed parsing of template literals with unnecessary escapes (Like `\\a`)
|
29
node_modules/terser/LICENSE
generated
vendored
Normal file
29
node_modules/terser/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
UglifyJS is released under the BSD license:
|
||||
|
||||
Copyright 2012-2018 (c) Mihai Bazon <mihai.bazon@gmail.com>
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions
|
||||
are met:
|
||||
|
||||
* Redistributions of source code must retain the above
|
||||
copyright notice, this list of conditions and the following
|
||||
disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above
|
||||
copyright notice, this list of conditions and the following
|
||||
disclaimer in the documentation and/or other materials
|
||||
provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY
|
||||
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE
|
||||
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
||||
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
|
||||
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
||||
THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGE.
|
15
node_modules/terser/PATRONS.md
generated
vendored
Normal file
15
node_modules/terser/PATRONS.md
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
# Our patrons
|
||||
|
||||
These are the first-tier patrons from [Patreon](https://www.patreon.com/fabiosantoscode). My appreciation goes to everyone on this list for supporting the project!
|
||||
|
||||
* 38elements
|
||||
* Alan Orozco
|
||||
* Aria Buckles
|
||||
* CKEditor
|
||||
* Mariusz Nowak
|
||||
* Nakshatra Mukhopadhyay
|
||||
* Philippe Léger
|
||||
* Piotrek Koszuliński
|
||||
* Serhiy Shyyko
|
||||
* Viktor Hubert
|
||||
* 龙腾道
|
1390
node_modules/terser/README.md
generated
vendored
Normal file
1390
node_modules/terser/README.md
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
477
node_modules/terser/bin/terser
generated
vendored
Normal file
477
node_modules/terser/bin/terser
generated
vendored
Normal file
@@ -0,0 +1,477 @@
|
||||
#!/usr/bin/env node
|
||||
// -*- js -*-
|
||||
/* eslint-env node */
|
||||
|
||||
"use strict";
|
||||
|
||||
require("../tools/exit.js");
|
||||
|
||||
var fs = require("fs");
|
||||
var info = require("../package.json");
|
||||
var path = require("path");
|
||||
var program = require("commander");
|
||||
|
||||
var Terser = require("..");
|
||||
try {
|
||||
require("source-map-support").install();
|
||||
} catch (err) {}
|
||||
|
||||
const skip_keys = new Set([ "cname", "parent_scope", "scope", "uses_eval", "uses_with", "_var_name_cache" ]);
|
||||
var files = {};
|
||||
var options = {
|
||||
compress: false,
|
||||
mangle: false
|
||||
};
|
||||
program.version(info.name + " " + info.version);
|
||||
program.parseArgv = program.parse;
|
||||
program.parse = undefined;
|
||||
if (process.argv.includes("ast")) program.helpInformation = describe_ast;
|
||||
else if (process.argv.includes("options")) program.helpInformation = function() {
|
||||
var text = [];
|
||||
var options = Terser.default_options();
|
||||
for (var option in options) {
|
||||
text.push("--" + (option === "output" ? "beautify" : option === "sourceMap" ? "source-map" : option) + " options:");
|
||||
text.push(format_object(options[option]));
|
||||
text.push("");
|
||||
}
|
||||
return text.join("\n");
|
||||
};
|
||||
program.option("-p, --parse <options>", "Specify parser options.", parse_js());
|
||||
program.option("-c, --compress [options]", "Enable compressor/specify compressor options.", parse_js());
|
||||
program.option("-m, --mangle [options]", "Mangle names/specify mangler options.", parse_js());
|
||||
program.option("--mangle-props [options]", "Mangle properties/specify mangler options.", parse_js());
|
||||
program.option("-b, --beautify [options]", "Beautify output/specify output options.", parse_js());
|
||||
program.option("-o, --output <file>", "Output file (default STDOUT).");
|
||||
program.option("--comments [filter]", "Preserve copyright comments in the output.");
|
||||
program.option("--config-file <file>", "Read minify() options from JSON file.");
|
||||
program.option("-d, --define <expr>[=value]", "Global definitions.", parse_js("define"));
|
||||
program.option("--ecma <version>", "Specify ECMAScript release: 5, 2015, 2016 or 2017...");
|
||||
program.option("-e, --enclose [arg[,...][:value[,...]]]", "Embed output in a big function with configurable arguments and values.");
|
||||
program.option("--ie8", "Support non-standard Internet Explorer 8.");
|
||||
program.option("--keep-classnames", "Do not mangle/drop class names.");
|
||||
program.option("--keep-fnames", "Do not mangle/drop function names. Useful for code relying on Function.prototype.name.");
|
||||
program.option("--module", "Input is an ES6 module");
|
||||
program.option("--name-cache <file>", "File to hold mangled name mappings.");
|
||||
program.option("--rename", "Force symbol expansion.");
|
||||
program.option("--no-rename", "Disable symbol expansion.");
|
||||
program.option("--safari10", "Support non-standard Safari 10.");
|
||||
program.option("--source-map [options]", "Enable source map/specify source map options.", parse_js());
|
||||
program.option("--timings", "Display operations run time on STDERR.");
|
||||
program.option("--toplevel", "Compress and/or mangle variables in toplevel scope.");
|
||||
program.option("--verbose", "Print diagnostic messages.");
|
||||
program.option("--warn", "Print warning messages.");
|
||||
program.option("--wrap <name>", "Embed everything as a function with “exports” corresponding to “name” globally.");
|
||||
program.arguments("[files...]").parseArgv(process.argv);
|
||||
if (program.configFile) {
|
||||
options = JSON.parse(read_file(program.configFile));
|
||||
}
|
||||
if (!program.output && program.sourceMap && program.sourceMap.url != "inline") {
|
||||
fatal("ERROR: cannot write source map to STDOUT");
|
||||
}
|
||||
[
|
||||
"compress",
|
||||
"enclose",
|
||||
"ie8",
|
||||
"mangle",
|
||||
"module",
|
||||
"safari10",
|
||||
"sourceMap",
|
||||
"toplevel",
|
||||
"wrap"
|
||||
].forEach(function(name) {
|
||||
if (name in program) {
|
||||
options[name] = program[name];
|
||||
}
|
||||
});
|
||||
if ("ecma" in program) {
|
||||
if (program.ecma != (program.ecma | 0)) fatal("ERROR: ecma must be an integer");
|
||||
const ecma = program.ecma | 0;
|
||||
if (ecma > 5 && ecma < 2015)
|
||||
options.ecma = ecma + 2009;
|
||||
else
|
||||
options.ecma = ecma;
|
||||
}
|
||||
if (program.beautify) {
|
||||
options.output = typeof program.beautify == "object" ? program.beautify : {};
|
||||
if (!("beautify" in options.output)) {
|
||||
options.output.beautify = true;
|
||||
}
|
||||
}
|
||||
if (program.comments) {
|
||||
if (typeof options.output != "object") options.output = {};
|
||||
options.output.comments = typeof program.comments == "string" ? (program.comments == "false" ? false : program.comments) : "some";
|
||||
}
|
||||
if (program.define) {
|
||||
if (typeof options.compress != "object") options.compress = {};
|
||||
if (typeof options.compress.global_defs != "object") options.compress.global_defs = {};
|
||||
for (var expr in program.define) {
|
||||
options.compress.global_defs[expr] = program.define[expr];
|
||||
}
|
||||
}
|
||||
if (program.keepClassnames) {
|
||||
options.keep_classnames = true;
|
||||
}
|
||||
if (program.keepFnames) {
|
||||
options.keep_fnames = true;
|
||||
}
|
||||
if (program.mangleProps) {
|
||||
if (program.mangleProps.domprops) {
|
||||
delete program.mangleProps.domprops;
|
||||
} else {
|
||||
if (typeof program.mangleProps != "object") program.mangleProps = {};
|
||||
if (!Array.isArray(program.mangleProps.reserved)) program.mangleProps.reserved = [];
|
||||
}
|
||||
if (typeof options.mangle != "object") options.mangle = {};
|
||||
options.mangle.properties = program.mangleProps;
|
||||
}
|
||||
if (program.nameCache) {
|
||||
options.nameCache = JSON.parse(read_file(program.nameCache, "{}"));
|
||||
}
|
||||
if (program.output == "ast") {
|
||||
options.output = {
|
||||
ast: true,
|
||||
code: false
|
||||
};
|
||||
}
|
||||
if (program.parse) {
|
||||
if (!program.parse.acorn && !program.parse.spidermonkey) {
|
||||
options.parse = program.parse;
|
||||
} else if (program.sourceMap && program.sourceMap.content == "inline") {
|
||||
fatal("ERROR: inline source map only works with built-in parser");
|
||||
}
|
||||
}
|
||||
if (~program.rawArgs.indexOf("--rename")) {
|
||||
options.rename = true;
|
||||
} else if (!program.rename) {
|
||||
options.rename = false;
|
||||
}
|
||||
var convert_path = function(name) {
|
||||
return name;
|
||||
};
|
||||
if (typeof program.sourceMap == "object" && "base" in program.sourceMap) {
|
||||
convert_path = function() {
|
||||
var base = program.sourceMap.base;
|
||||
delete options.sourceMap.base;
|
||||
return function(name) {
|
||||
return path.relative(base, name);
|
||||
};
|
||||
}();
|
||||
}
|
||||
if (program.verbose) {
|
||||
options.warnings = "verbose";
|
||||
} else if (program.warn) {
|
||||
options.warnings = true;
|
||||
}
|
||||
|
||||
let filesList;
|
||||
if (options.files && options.files.length) {
|
||||
filesList = options.files;
|
||||
|
||||
delete options.files;
|
||||
} else if (program.args.length) {
|
||||
filesList = program.args;
|
||||
}
|
||||
|
||||
if (filesList) {
|
||||
simple_glob(filesList).forEach(function(name) {
|
||||
files[convert_path(name)] = read_file(name);
|
||||
});
|
||||
run();
|
||||
} else {
|
||||
var chunks = [];
|
||||
process.stdin.setEncoding("utf8");
|
||||
process.stdin.on("data", function(chunk) {
|
||||
chunks.push(chunk);
|
||||
}).on("end", function() {
|
||||
files = [ chunks.join("") ];
|
||||
run();
|
||||
});
|
||||
process.stdin.resume();
|
||||
}
|
||||
|
||||
function convert_ast(fn) {
|
||||
return Terser.AST_Node.from_mozilla_ast(Object.keys(files).reduce(fn, null));
|
||||
}
|
||||
|
||||
function run() {
|
||||
Terser.AST_Node.warn_function = function(msg) {
|
||||
print_error("WARN: " + msg);
|
||||
};
|
||||
var content = program.sourceMap && program.sourceMap.content;
|
||||
if (content && content !== "inline") {
|
||||
options.sourceMap.content = read_file(content, content);
|
||||
}
|
||||
if (program.timings) options.timings = true;
|
||||
try {
|
||||
if (program.parse) {
|
||||
if (program.parse.acorn) {
|
||||
files = convert_ast(function(toplevel, name) {
|
||||
return require("acorn").parse(files[name], {
|
||||
ecmaVersion: 2018,
|
||||
locations: true,
|
||||
program: toplevel,
|
||||
sourceFile: name,
|
||||
sourceType: options.module || program.parse.module ? "module" : "script"
|
||||
});
|
||||
});
|
||||
} else if (program.parse.spidermonkey) {
|
||||
files = convert_ast(function(toplevel, name) {
|
||||
var obj = JSON.parse(files[name]);
|
||||
if (!toplevel) return obj;
|
||||
toplevel.body = toplevel.body.concat(obj.body);
|
||||
return toplevel;
|
||||
});
|
||||
}
|
||||
}
|
||||
} catch (ex) {
|
||||
fatal(ex);
|
||||
}
|
||||
var result = Terser.minify(files, options);
|
||||
if (result.error) {
|
||||
var ex = result.error;
|
||||
if (ex.name == "SyntaxError") {
|
||||
print_error("Parse error at " + ex.filename + ":" + ex.line + "," + ex.col);
|
||||
var col = ex.col;
|
||||
var lines = files[ex.filename].split(/\r?\n/);
|
||||
var line = lines[ex.line - 1];
|
||||
if (!line && !col) {
|
||||
line = lines[ex.line - 2];
|
||||
col = line.length;
|
||||
}
|
||||
if (line) {
|
||||
var limit = 70;
|
||||
if (col > limit) {
|
||||
line = line.slice(col - limit);
|
||||
col = limit;
|
||||
}
|
||||
print_error(line.slice(0, 80));
|
||||
print_error(line.slice(0, col).replace(/\S/g, " ") + "^");
|
||||
}
|
||||
}
|
||||
if (ex.defs) {
|
||||
print_error("Supported options:");
|
||||
print_error(format_object(ex.defs));
|
||||
}
|
||||
fatal(ex);
|
||||
} else if (program.output == "ast") {
|
||||
if (!options.compress && !options.mangle) {
|
||||
result.ast.figure_out_scope({});
|
||||
}
|
||||
print(JSON.stringify(result.ast, function(key, value) {
|
||||
if (value) switch (key) {
|
||||
case "thedef":
|
||||
return symdef(value);
|
||||
case "enclosed":
|
||||
return value.length ? value.map(symdef) : undefined;
|
||||
case "variables":
|
||||
case "functions":
|
||||
case "globals":
|
||||
return value.size ? collect_from_map(value, symdef) : undefined;
|
||||
}
|
||||
if (skip_keys.has(key)) return;
|
||||
if (value instanceof Terser.AST_Token) return;
|
||||
if (value instanceof Map) return;
|
||||
if (value instanceof Terser.AST_Node) {
|
||||
var result = {
|
||||
_class: "AST_" + value.TYPE
|
||||
};
|
||||
if (value.block_scope) {
|
||||
result.variables = value.block_scope.variables;
|
||||
result.functions = value.block_scope.functions;
|
||||
result.enclosed = value.block_scope.enclosed;
|
||||
}
|
||||
value.CTOR.PROPS.forEach(function(prop) {
|
||||
if (prop === "block_scope") return;
|
||||
result[prop] = value[prop];
|
||||
});
|
||||
return result;
|
||||
}
|
||||
return value;
|
||||
}, 2));
|
||||
} else if (program.output == "spidermonkey") {
|
||||
print(JSON.stringify(Terser.minify(result.code, {
|
||||
compress: false,
|
||||
mangle: false,
|
||||
output: {
|
||||
ast: true,
|
||||
code: false
|
||||
}
|
||||
}).ast.to_mozilla_ast(), null, 2));
|
||||
} else if (program.output) {
|
||||
fs.writeFileSync(program.output, result.code);
|
||||
if (options.sourceMap.url !== "inline" && result.map) {
|
||||
fs.writeFileSync(program.output + ".map", result.map);
|
||||
}
|
||||
} else {
|
||||
print(result.code);
|
||||
}
|
||||
if (program.nameCache) {
|
||||
fs.writeFileSync(program.nameCache, JSON.stringify(options.nameCache));
|
||||
}
|
||||
if (result.timings) for (var phase in result.timings) {
|
||||
print_error("- " + phase + ": " + result.timings[phase].toFixed(3) + "s");
|
||||
}
|
||||
}
|
||||
|
||||
function fatal(message) {
|
||||
if (message instanceof Error) message = message.stack.replace(/^\S*?Error:/, "ERROR:");
|
||||
print_error(message);
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
// A file glob function that only supports "*" and "?" wildcards in the basename.
|
||||
// Example: "foo/bar/*baz??.*.js"
|
||||
// Argument `glob` may be a string or an array of strings.
|
||||
// Returns an array of strings. Garbage in, garbage out.
|
||||
function simple_glob(glob) {
|
||||
if (Array.isArray(glob)) {
|
||||
return [].concat.apply([], glob.map(simple_glob));
|
||||
}
|
||||
if (glob && glob.match(/[*?]/)) {
|
||||
var dir = path.dirname(glob);
|
||||
try {
|
||||
var entries = fs.readdirSync(dir);
|
||||
} catch (ex) {}
|
||||
if (entries) {
|
||||
var pattern = "^" + path.basename(glob)
|
||||
.replace(/[.+^$[\]\\(){}]/g, "\\$&")
|
||||
.replace(/\*/g, "[^/\\\\]*")
|
||||
.replace(/\?/g, "[^/\\\\]") + "$";
|
||||
var mod = process.platform === "win32" ? "i" : "";
|
||||
var rx = new RegExp(pattern, mod);
|
||||
var results = entries.filter(function(name) {
|
||||
return rx.test(name);
|
||||
}).map(function(name) {
|
||||
return path.join(dir, name);
|
||||
});
|
||||
if (results.length) return results;
|
||||
}
|
||||
}
|
||||
return [ glob ];
|
||||
}
|
||||
|
||||
function read_file(path, default_value) {
|
||||
try {
|
||||
return fs.readFileSync(path, "utf8");
|
||||
} catch (ex) {
|
||||
if ((ex.code == "ENOENT" || ex.code == "ENAMETOOLONG") && default_value != null) return default_value;
|
||||
fatal(ex);
|
||||
}
|
||||
}
|
||||
|
||||
function parse_js(flag) {
|
||||
return function(value, options) {
|
||||
options = options || {};
|
||||
try {
|
||||
Terser.parse(value, {
|
||||
expression: true
|
||||
}).walk(new Terser.TreeWalker(function(node) {
|
||||
if (node instanceof Terser.AST_Assign) {
|
||||
var name = node.left.print_to_string();
|
||||
var value = node.right;
|
||||
if (flag) {
|
||||
options[name] = value;
|
||||
} else if (value instanceof Terser.AST_Array) {
|
||||
options[name] = value.elements.map(to_string);
|
||||
} else if (value instanceof Terser.AST_RegExp) {
|
||||
value = value.value;
|
||||
options[name] = new RegExp(value.source, value.flags);
|
||||
} else {
|
||||
options[name] = to_string(value);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
if (node instanceof Terser.AST_Symbol || node instanceof Terser.AST_PropAccess) {
|
||||
var name = node.print_to_string();
|
||||
options[name] = true;
|
||||
return true;
|
||||
}
|
||||
if (!(node instanceof Terser.AST_Sequence)) throw node;
|
||||
|
||||
function to_string(value) {
|
||||
return value instanceof Terser.AST_Constant ? value.getValue() : value.print_to_string({
|
||||
quote_keys: true
|
||||
});
|
||||
}
|
||||
}));
|
||||
} catch(ex) {
|
||||
if (flag) {
|
||||
fatal("Error parsing arguments for '" + flag + "': " + value);
|
||||
} else {
|
||||
options[value] = null;
|
||||
}
|
||||
}
|
||||
return options;
|
||||
};
|
||||
}
|
||||
|
||||
function symdef(def) {
|
||||
var ret = (1e6 + def.id) + " " + def.name;
|
||||
if (def.mangled_name) ret += " " + def.mangled_name;
|
||||
return ret;
|
||||
}
|
||||
|
||||
function collect_from_map(map, callback) {
|
||||
var result = [];
|
||||
map.forEach(function (def) {
|
||||
result.push(callback(def));
|
||||
});
|
||||
return result;
|
||||
}
|
||||
|
||||
function format_object(obj) {
|
||||
var lines = [];
|
||||
var padding = "";
|
||||
Object.keys(obj).map(function(name) {
|
||||
if (padding.length < name.length) padding = Array(name.length + 1).join(" ");
|
||||
return [ name, JSON.stringify(obj[name]) ];
|
||||
}).forEach(function(tokens) {
|
||||
lines.push(" " + tokens[0] + padding.slice(tokens[0].length - 2) + tokens[1]);
|
||||
});
|
||||
return lines.join("\n");
|
||||
}
|
||||
|
||||
function print_error(msg) {
|
||||
process.stderr.write(msg);
|
||||
process.stderr.write("\n");
|
||||
}
|
||||
|
||||
function print(txt) {
|
||||
process.stdout.write(txt);
|
||||
process.stdout.write("\n");
|
||||
}
|
||||
|
||||
function describe_ast() {
|
||||
var out = Terser.OutputStream({ beautify: true });
|
||||
function doitem(ctor) {
|
||||
out.print("AST_" + ctor.TYPE);
|
||||
var props = ctor.SELF_PROPS.filter(function(prop) {
|
||||
return !/^\$/.test(prop);
|
||||
});
|
||||
if (props.length > 0) {
|
||||
out.space();
|
||||
out.with_parens(function() {
|
||||
props.forEach(function(prop, i) {
|
||||
if (i) out.space();
|
||||
out.print(prop);
|
||||
});
|
||||
});
|
||||
}
|
||||
if (ctor.documentation) {
|
||||
out.space();
|
||||
out.print_string(ctor.documentation);
|
||||
}
|
||||
if (ctor.SUBCLASSES.length > 0) {
|
||||
out.space();
|
||||
out.with_block(function() {
|
||||
ctor.SUBCLASSES.forEach(function(ctor, i) {
|
||||
out.indent();
|
||||
doitem(ctor);
|
||||
out.newline();
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
doitem(Terser.AST_Node);
|
||||
return out + "\n";
|
||||
}
|
10
node_modules/terser/bin/uglifyjs
generated
vendored
Normal file
10
node_modules/terser/bin/uglifyjs
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env node
|
||||
// -*- js -*-
|
||||
/* eslint-env node */
|
||||
|
||||
"use strict";
|
||||
|
||||
process.stderr.write( "DEPRECATION WARNING: uglifyjs binary will soon be discontinued!\n");
|
||||
process.stderr.write("Please use \"terser\" instead.\n\n");
|
||||
|
||||
require("./terser");
|
0
node_modules/terser/dist/.gitkeep
generated
vendored
Normal file
0
node_modules/terser/dist/.gitkeep
generated
vendored
Normal file
2
node_modules/terser/dist/bundle.min.js
generated
vendored
Normal file
2
node_modules/terser/dist/bundle.min.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1
node_modules/terser/dist/bundle.min.js.map
generated
vendored
Normal file
1
node_modules/terser/dist/bundle.min.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
166
node_modules/terser/package.json
generated
vendored
Normal file
166
node_modules/terser/package.json
generated
vendored
Normal file
@@ -0,0 +1,166 @@
|
||||
{
|
||||
"_from": "terser@^4.8.0",
|
||||
"_id": "terser@4.8.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==",
|
||||
"_location": "/terser",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"registry": true,
|
||||
"raw": "terser@^4.8.0",
|
||||
"name": "terser",
|
||||
"escapedName": "terser",
|
||||
"rawSpec": "^4.8.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^4.8.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/minifyfromhtml"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz",
|
||||
"_shasum": "63056343d7c70bb29f3af665865a46fe03a0df17",
|
||||
"_spec": "terser@^4.8.0",
|
||||
"_where": "D:\\Projects\\vanillajs-seed\\node_modules\\minifyfromhtml",
|
||||
"author": {
|
||||
"name": "Mihai Bazon",
|
||||
"email": "mihai.bazon@gmail.com",
|
||||
"url": "http://lisperator.net/"
|
||||
},
|
||||
"bin": {
|
||||
"terser": "bin/terser"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/terser/terser/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"commander": "^2.20.0",
|
||||
"source-map": "~0.6.1",
|
||||
"source-map-support": "~0.5.12"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "JavaScript parser, mangler/compressor and beautifier toolkit for ES6+",
|
||||
"devDependencies": {
|
||||
"acorn": "^7.1.1",
|
||||
"astring": "^1.4.1",
|
||||
"eslint": "^6.3.0",
|
||||
"eslump": "^2.0.0",
|
||||
"mocha": "^7.1.2",
|
||||
"mochallel": "^2.0.0",
|
||||
"pre-commit": "^1.2.2",
|
||||
"rimraf": "^3.0.0",
|
||||
"rollup": "2.0.6",
|
||||
"rollup-plugin-terser": "5.3.0",
|
||||
"semver": "^7.1.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.0.0"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"parserOptions": {
|
||||
"sourceType": "module"
|
||||
},
|
||||
"env": {
|
||||
"es6": true
|
||||
},
|
||||
"globals": {
|
||||
"describe": false,
|
||||
"it": false,
|
||||
"require": false,
|
||||
"global": false,
|
||||
"process": false
|
||||
},
|
||||
"rules": {
|
||||
"brace-style": [
|
||||
"error",
|
||||
"1tbs",
|
||||
{
|
||||
"allowSingleLine": true
|
||||
}
|
||||
],
|
||||
"quotes": [
|
||||
"error",
|
||||
"double",
|
||||
"avoid-escape"
|
||||
],
|
||||
"no-debugger": "error",
|
||||
"no-undef": "error",
|
||||
"no-unused-vars": [
|
||||
"error",
|
||||
{
|
||||
"varsIgnorePattern": "^_$"
|
||||
}
|
||||
],
|
||||
"no-tabs": "error",
|
||||
"semi": [
|
||||
"error",
|
||||
"always"
|
||||
],
|
||||
"no-extra-semi": "error",
|
||||
"no-irregular-whitespace": "error",
|
||||
"space-before-blocks": [
|
||||
"error",
|
||||
"always"
|
||||
]
|
||||
}
|
||||
},
|
||||
"files": [
|
||||
"bin",
|
||||
"dist",
|
||||
"tools",
|
||||
"LICENSE",
|
||||
"README.md",
|
||||
"CHANGELOG.md",
|
||||
"PATRONS.md"
|
||||
],
|
||||
"homepage": "https://terser.org",
|
||||
"keywords": [
|
||||
"uglify",
|
||||
"terser",
|
||||
"uglify-es",
|
||||
"uglify-js",
|
||||
"minify",
|
||||
"minifier",
|
||||
"javascript",
|
||||
"ecmascript",
|
||||
"es5",
|
||||
"es6",
|
||||
"es7",
|
||||
"es8",
|
||||
"es2015",
|
||||
"es2016",
|
||||
"es2017",
|
||||
"async",
|
||||
"await"
|
||||
],
|
||||
"license": "BSD-2-Clause",
|
||||
"main": "dist/bundle.min.js",
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Fábio Santos",
|
||||
"email": "fabiosantosart@gmail.com"
|
||||
}
|
||||
],
|
||||
"name": "terser",
|
||||
"pre-commit": [
|
||||
"lint-fix",
|
||||
"test"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/terser/terser.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rimraf dist/* && rollup --config --silent",
|
||||
"lint": "eslint lib",
|
||||
"lint-fix": "eslint --fix lib",
|
||||
"postversion": "echo 'Remember to update the changelog!'",
|
||||
"prepare": "npm run build",
|
||||
"test": "npm run build -- --configTest && node test/run-tests.js",
|
||||
"test:compress": "npm run build -- --configTest && node test/compress.js",
|
||||
"test:mocha": "npm run build -- --configTest && node test/mocha.js"
|
||||
},
|
||||
"types": "tools/terser.d.ts",
|
||||
"version": "4.8.0"
|
||||
}
|
11
node_modules/terser/tools/colorless-console.js
generated
vendored
Normal file
11
node_modules/terser/tools/colorless-console.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
"use strict"
|
||||
|
||||
if (Number((/([0-9]+)\./.exec(process.version) || [])[1]) >= 10) {
|
||||
var Console = require("console").Console;
|
||||
global.console = new Console({
|
||||
stdout: process.stdout,
|
||||
stderr: process.stderr,
|
||||
colorMode: false
|
||||
});
|
||||
}
|
||||
|
5619
node_modules/terser/tools/domprops.js
generated
vendored
Normal file
5619
node_modules/terser/tools/domprops.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
15
node_modules/terser/tools/exit.js
generated
vendored
Normal file
15
node_modules/terser/tools/exit.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
// workaround for tty output truncation upon process.exit()
|
||||
var exit = process.exit;
|
||||
process.exit = function() {
|
||||
var args = [].slice.call(arguments);
|
||||
process.once("uncaughtException", function() {
|
||||
(function callback() {
|
||||
if (process.stdout.bufferSize || process.stderr.bufferSize) {
|
||||
setImmediate(callback);
|
||||
} else {
|
||||
exit.apply(process, args);
|
||||
}
|
||||
})();
|
||||
});
|
||||
throw exit;
|
||||
};
|
19
node_modules/terser/tools/node.js
generated
vendored
Normal file
19
node_modules/terser/tools/node.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
import { minify } from "../lib/minify";
|
||||
|
||||
export function default_options() {
|
||||
const defs = {};
|
||||
|
||||
Object.keys(infer_options({ 0: 0 })).forEach((component) => {
|
||||
const options = infer_options({
|
||||
[component]: {0: 0}
|
||||
});
|
||||
|
||||
if (options) defs[component] = options;
|
||||
});
|
||||
return defs;
|
||||
}
|
||||
|
||||
function infer_options(options) {
|
||||
var result = minify("", options);
|
||||
return result.error && result.error.defs;
|
||||
}
|
55
node_modules/terser/tools/props.html
generated
vendored
Normal file
55
node_modules/terser/tools/props.html
generated
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
<script>(function(){
|
||||
var props = {};
|
||||
|
||||
function addObject(obj) {
|
||||
if (obj == null) return;
|
||||
try {
|
||||
Object.getOwnPropertyNames(obj).forEach(add);
|
||||
} catch(ex) {}
|
||||
if (obj.prototype) {
|
||||
Object.getOwnPropertyNames(obj.prototype).forEach(add);
|
||||
}
|
||||
if (typeof obj == "function") {
|
||||
try {
|
||||
Object.getOwnPropertyNames(new obj).forEach(add);
|
||||
} catch(ex) {}
|
||||
}
|
||||
}
|
||||
|
||||
function add(name) {
|
||||
props[name] = true;
|
||||
}
|
||||
|
||||
Object.getOwnPropertyNames(window).forEach(function(thing){
|
||||
addObject(window[thing]);
|
||||
});
|
||||
|
||||
try {
|
||||
addObject(new Event("click"));
|
||||
addObject(new Event("contextmenu"));
|
||||
addObject(new Event("mouseup"));
|
||||
addObject(new Event("mousedown"));
|
||||
addObject(new Event("keydown"));
|
||||
addObject(new Event("keypress"));
|
||||
addObject(new Event("keyup"));
|
||||
} catch(ex) {}
|
||||
|
||||
var ta = document.createElement("textarea");
|
||||
ta.style.width = "100%";
|
||||
ta.style.height = "20em";
|
||||
ta.style.boxSizing = "border-box";
|
||||
ta.value = 'export var domprops = ' + JSON.stringify(Object.keys(props).sort(cmp), null, 4);
|
||||
document.body.appendChild(ta);
|
||||
|
||||
function cmp(a, b) {
|
||||
a = a.toLowerCase();
|
||||
b = b.toLowerCase();
|
||||
return a < b ? -1 : a > b ? 1 : 0;
|
||||
}
|
||||
})();</script>
|
||||
</body>
|
||||
</html>
|
794
node_modules/terser/tools/terser.d.ts
generated
vendored
Normal file
794
node_modules/terser/tools/terser.d.ts
generated
vendored
Normal file
@@ -0,0 +1,794 @@
|
||||
/// <reference lib="es2015" />
|
||||
|
||||
import { RawSourceMap } from 'source-map';
|
||||
|
||||
/** @deprecated since this versions basically do not exist */
|
||||
type ECMA_UNOFFICIAL = 6 | 7 | 8 | 9 | 10 | 11;
|
||||
|
||||
export type ECMA = 5 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | ECMA_UNOFFICIAL;
|
||||
|
||||
export interface ParseOptions {
|
||||
bare_returns?: boolean;
|
||||
ecma?: ECMA;
|
||||
html5_comments?: boolean;
|
||||
shebang?: boolean;
|
||||
}
|
||||
|
||||
export interface CompressOptions {
|
||||
arguments?: boolean;
|
||||
arrows?: boolean;
|
||||
booleans_as_integers?: boolean;
|
||||
booleans?: boolean;
|
||||
collapse_vars?: boolean;
|
||||
comparisons?: boolean;
|
||||
computed_props?: boolean;
|
||||
conditionals?: boolean;
|
||||
dead_code?: boolean;
|
||||
defaults?: boolean;
|
||||
directives?: boolean;
|
||||
drop_console?: boolean;
|
||||
drop_debugger?: boolean;
|
||||
ecma?: ECMA;
|
||||
evaluate?: boolean;
|
||||
expression?: boolean;
|
||||
global_defs?: object;
|
||||
hoist_funs?: boolean;
|
||||
hoist_props?: boolean;
|
||||
hoist_vars?: boolean;
|
||||
ie8?: boolean;
|
||||
if_return?: boolean;
|
||||
inline?: boolean | InlineFunctions;
|
||||
join_vars?: boolean;
|
||||
keep_classnames?: boolean | RegExp;
|
||||
keep_fargs?: boolean;
|
||||
keep_fnames?: boolean | RegExp;
|
||||
keep_infinity?: boolean;
|
||||
loops?: boolean;
|
||||
module?: boolean;
|
||||
negate_iife?: boolean;
|
||||
passes?: number;
|
||||
properties?: boolean;
|
||||
pure_funcs?: string[];
|
||||
pure_getters?: boolean | 'strict';
|
||||
reduce_funcs?: boolean;
|
||||
reduce_vars?: boolean;
|
||||
sequences?: boolean | number;
|
||||
side_effects?: boolean;
|
||||
switches?: boolean;
|
||||
toplevel?: boolean;
|
||||
top_retain?: null | string | string[] | RegExp;
|
||||
typeofs?: boolean;
|
||||
unsafe_arrows?: boolean;
|
||||
unsafe?: boolean;
|
||||
unsafe_comps?: boolean;
|
||||
unsafe_Function?: boolean;
|
||||
unsafe_math?: boolean;
|
||||
unsafe_symbols?: boolean;
|
||||
unsafe_methods?: boolean;
|
||||
unsafe_proto?: boolean;
|
||||
unsafe_regexp?: boolean;
|
||||
unsafe_undefined?: boolean;
|
||||
unused?: boolean;
|
||||
warnings?: boolean;
|
||||
}
|
||||
|
||||
export enum InlineFunctions {
|
||||
Disabled = 0,
|
||||
SimpleFunctions = 1,
|
||||
WithArguments = 2,
|
||||
WithArgumentsAndVariables = 3
|
||||
}
|
||||
|
||||
export interface MangleOptions {
|
||||
eval?: boolean;
|
||||
keep_classnames?: boolean | RegExp;
|
||||
keep_fnames?: boolean | RegExp;
|
||||
module?: boolean;
|
||||
properties?: boolean | ManglePropertiesOptions;
|
||||
reserved?: string[];
|
||||
safari10?: boolean;
|
||||
toplevel?: boolean;
|
||||
}
|
||||
|
||||
export interface ManglePropertiesOptions {
|
||||
builtins?: boolean;
|
||||
debug?: boolean;
|
||||
keep_quoted?: boolean | 'strict';
|
||||
regex?: RegExp | string;
|
||||
reserved?: string[];
|
||||
}
|
||||
|
||||
export interface OutputOptions {
|
||||
ascii_only?: boolean;
|
||||
beautify?: boolean;
|
||||
braces?: boolean;
|
||||
comments?: boolean | 'all' | 'some' | RegExp | ( (node: AST_Node, comment: {
|
||||
value: string,
|
||||
type: 'comment1' | 'comment2' | 'comment3' | 'comment4',
|
||||
pos: number,
|
||||
line: number,
|
||||
col: number,
|
||||
}) => boolean );
|
||||
ecma?: ECMA;
|
||||
ie8?: boolean;
|
||||
indent_level?: number;
|
||||
indent_start?: number;
|
||||
inline_script?: boolean;
|
||||
keep_quoted_props?: boolean;
|
||||
max_line_len?: number | false;
|
||||
preamble?: string;
|
||||
preserve_annotations?: boolean;
|
||||
quote_keys?: boolean;
|
||||
quote_style?: OutputQuoteStyle;
|
||||
safari10?: boolean;
|
||||
semicolons?: boolean;
|
||||
shebang?: boolean;
|
||||
shorthand?: boolean;
|
||||
source_map?: SourceMapOptions;
|
||||
webkit?: boolean;
|
||||
width?: number;
|
||||
wrap_iife?: boolean;
|
||||
wrap_func_args?: boolean;
|
||||
}
|
||||
|
||||
export enum OutputQuoteStyle {
|
||||
PreferDouble = 0,
|
||||
AlwaysSingle = 1,
|
||||
AlwaysDouble = 2,
|
||||
AlwaysOriginal = 3
|
||||
}
|
||||
|
||||
export interface MinifyOptions {
|
||||
compress?: boolean | CompressOptions;
|
||||
ecma?: ECMA;
|
||||
ie8?: boolean;
|
||||
keep_classnames?: boolean | RegExp;
|
||||
keep_fnames?: boolean | RegExp;
|
||||
mangle?: boolean | MangleOptions;
|
||||
module?: boolean;
|
||||
nameCache?: object;
|
||||
output?: OutputOptions;
|
||||
parse?: ParseOptions;
|
||||
safari10?: boolean;
|
||||
sourceMap?: boolean | SourceMapOptions;
|
||||
toplevel?: boolean;
|
||||
warnings?: boolean | 'verbose';
|
||||
}
|
||||
|
||||
export interface MinifyOutput {
|
||||
ast?: AST_Node;
|
||||
code?: string;
|
||||
error?: Error;
|
||||
map?: RawSourceMap | string;
|
||||
warnings?: string[];
|
||||
}
|
||||
|
||||
export interface SourceMapOptions {
|
||||
/** Source map object, 'inline' or source map file content */
|
||||
content?: RawSourceMap | string;
|
||||
includeSources?: boolean;
|
||||
filename?: string;
|
||||
root?: string;
|
||||
url?: string | 'inline';
|
||||
}
|
||||
|
||||
declare function parse(text: string, options?: ParseOptions): AST_Node;
|
||||
|
||||
export class TreeWalker {
|
||||
constructor(callback: (node: AST_Node, descend?: (node: AST_Node) => void) => boolean | undefined);
|
||||
directives: object;
|
||||
find_parent(type: AST_Node): AST_Node | undefined;
|
||||
has_directive(type: string): boolean;
|
||||
loopcontrol_target(node: AST_Node): AST_Node | undefined;
|
||||
parent(n: number): AST_Node | undefined;
|
||||
pop(): void;
|
||||
push(node: AST_Node): void;
|
||||
self(): AST_Node | undefined;
|
||||
stack: AST_Node[];
|
||||
visit: (node: AST_Node, descend: boolean) => any;
|
||||
}
|
||||
|
||||
export class TreeTransformer extends TreeWalker {
|
||||
constructor(
|
||||
before: (node: AST_Node, descend?: (node: AST_Node, tw: TreeWalker) => void, in_list?: boolean) => AST_Node | undefined,
|
||||
after?: (node: AST_Node, in_list?: boolean) => AST_Node | undefined
|
||||
);
|
||||
before: (node: AST_Node) => AST_Node;
|
||||
after?: (node: AST_Node) => AST_Node;
|
||||
}
|
||||
|
||||
export function push_uniq<T>(array: T[], el: T): void;
|
||||
|
||||
export function minify(files: string | string[] | { [file: string]: string } | AST_Node, options?: MinifyOptions): MinifyOutput;
|
||||
|
||||
export class AST_Node {
|
||||
constructor(props?: object);
|
||||
static BASE?: AST_Node;
|
||||
static PROPS: string[];
|
||||
static SELF_PROPS: string[];
|
||||
static SUBCLASSES: AST_Node[];
|
||||
static documentation: string;
|
||||
static propdoc?: Record<string, string>;
|
||||
static expressions?: AST_Node[];
|
||||
static warn?: (text: string, props: any) => void;
|
||||
static from_mozilla_ast?: (node: AST_Node) => any;
|
||||
walk: (visitor: TreeWalker) => void;
|
||||
print_to_string: (options?: OutputOptions) => string;
|
||||
transform: (tt: TreeTransformer, in_list?: boolean) => AST_Node;
|
||||
TYPE: string;
|
||||
CTOR: typeof AST_Node;
|
||||
}
|
||||
|
||||
declare class SymbolDef {
|
||||
constructor(scope?: AST_Scope, orig?: object, init?: object);
|
||||
name: string;
|
||||
orig: AST_SymbolRef[];
|
||||
init: AST_SymbolRef;
|
||||
eliminated: number;
|
||||
scope: AST_Scope;
|
||||
references: AST_SymbolRef[];
|
||||
replaced: number;
|
||||
global: boolean;
|
||||
export: boolean;
|
||||
mangled_name: null | string;
|
||||
undeclared: boolean;
|
||||
id: number;
|
||||
}
|
||||
|
||||
type ArgType = AST_SymbolFunarg | AST_DefaultAssign | AST_Destructuring | AST_Expansion;
|
||||
|
||||
declare class AST_Statement extends AST_Node {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Debugger extends AST_Statement {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Directive extends AST_Statement {
|
||||
constructor(props?: object);
|
||||
value: string;
|
||||
quote: string;
|
||||
}
|
||||
|
||||
declare class AST_SimpleStatement extends AST_Statement {
|
||||
constructor(props?: object);
|
||||
body: AST_Node[];
|
||||
}
|
||||
|
||||
declare class AST_Block extends AST_Statement {
|
||||
constructor(props?: object);
|
||||
body: AST_Node[];
|
||||
block_scope: AST_Scope | null;
|
||||
}
|
||||
|
||||
declare class AST_BlockStatement extends AST_Block {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Scope extends AST_Block {
|
||||
constructor(props?: object);
|
||||
variables: any;
|
||||
functions: any;
|
||||
uses_with: boolean;
|
||||
uses_eval: boolean;
|
||||
parent_scope: AST_Scope | null;
|
||||
enclosed: any;
|
||||
cname: any;
|
||||
}
|
||||
|
||||
declare class AST_Toplevel extends AST_Scope {
|
||||
constructor(props?: object);
|
||||
globals: any;
|
||||
}
|
||||
|
||||
declare class AST_Lambda extends AST_Scope {
|
||||
constructor(props?: object);
|
||||
name: AST_SymbolDeclaration | null;
|
||||
argnames: ArgType[];
|
||||
uses_arguments: boolean;
|
||||
is_generator: boolean;
|
||||
async: boolean;
|
||||
}
|
||||
|
||||
declare class AST_Accessor extends AST_Lambda {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Function extends AST_Lambda {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Arrow extends AST_Lambda {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Defun extends AST_Lambda {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Class extends AST_Scope {
|
||||
constructor(props?: object);
|
||||
name: AST_SymbolClass | AST_SymbolDefClass | null;
|
||||
extends: AST_Node | null;
|
||||
properties: AST_ObjectProperty[];
|
||||
}
|
||||
|
||||
declare class AST_DefClass extends AST_Class {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_ClassExpression extends AST_Class {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Switch extends AST_Block {
|
||||
constructor(props?: object);
|
||||
expression: AST_Node;
|
||||
}
|
||||
|
||||
declare class AST_SwitchBranch extends AST_Block {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Default extends AST_SwitchBranch {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Case extends AST_SwitchBranch {
|
||||
constructor(props?: object);
|
||||
expression: AST_Node;
|
||||
}
|
||||
|
||||
declare class AST_Try extends AST_Block {
|
||||
constructor(props?: object);
|
||||
bcatch: AST_Catch;
|
||||
bfinally: null | AST_Finally;
|
||||
}
|
||||
|
||||
declare class AST_Catch extends AST_Block {
|
||||
constructor(props?: object);
|
||||
argname: ArgType;
|
||||
}
|
||||
|
||||
declare class AST_Finally extends AST_Block {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_EmptyStatement extends AST_Statement {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_StatementWithBody extends AST_Statement {
|
||||
constructor(props?: object);
|
||||
body: AST_Node[];
|
||||
}
|
||||
|
||||
declare class AST_LabeledStatement extends AST_StatementWithBody {
|
||||
constructor(props?: object);
|
||||
label: AST_Label;
|
||||
}
|
||||
|
||||
declare class AST_IterationStatement extends AST_StatementWithBody {
|
||||
constructor(props?: object);
|
||||
block_scope: AST_Scope | null;
|
||||
}
|
||||
|
||||
declare class AST_DWLoop extends AST_IterationStatement {
|
||||
constructor(props?: object);
|
||||
condition: AST_Node;
|
||||
}
|
||||
|
||||
declare class AST_Do extends AST_DWLoop {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_While extends AST_DWLoop {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_For extends AST_IterationStatement {
|
||||
constructor(props?: object);
|
||||
init: AST_Node | null;
|
||||
condition: AST_Node | null;
|
||||
step: AST_Node | null;
|
||||
}
|
||||
|
||||
declare class AST_ForIn extends AST_IterationStatement {
|
||||
constructor(props?: object);
|
||||
init: AST_Node | null;
|
||||
object: AST_Node;
|
||||
}
|
||||
|
||||
declare class AST_ForOf extends AST_ForIn {
|
||||
constructor(props?: object);
|
||||
await: boolean;
|
||||
}
|
||||
|
||||
declare class AST_With extends AST_StatementWithBody {
|
||||
constructor(props?: object);
|
||||
expression: AST_Node;
|
||||
}
|
||||
|
||||
declare class AST_If extends AST_StatementWithBody {
|
||||
constructor(props?: object);
|
||||
condition: AST_Node;
|
||||
alternative: AST_Node | null;
|
||||
}
|
||||
|
||||
declare class AST_Jump extends AST_Statement {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Exit extends AST_Jump {
|
||||
constructor(props?: object);
|
||||
value: AST_Node | null;
|
||||
}
|
||||
|
||||
declare class AST_Return extends AST_Exit {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Throw extends AST_Exit {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_LoopControl extends AST_Jump {
|
||||
constructor(props?: object);
|
||||
label: null | AST_LabelRef;
|
||||
}
|
||||
|
||||
declare class AST_Break extends AST_LoopControl {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Continue extends AST_LoopControl {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Definitions extends AST_Statement {
|
||||
constructor(props?: object);
|
||||
definitions: AST_VarDef[];
|
||||
}
|
||||
|
||||
declare class AST_Var extends AST_Definitions {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Let extends AST_Definitions {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Const extends AST_Definitions {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Export extends AST_Statement {
|
||||
constructor(props?: object);
|
||||
exported_definition: AST_Definitions | AST_Lambda | AST_DefClass | null;
|
||||
exported_value: AST_Node | null;
|
||||
is_default: boolean;
|
||||
exported_names: AST_NameMapping[];
|
||||
module_name: AST_String;
|
||||
}
|
||||
|
||||
declare class AST_Expansion extends AST_Node {
|
||||
constructor(props?: object);
|
||||
expression: AST_Node;
|
||||
}
|
||||
|
||||
declare class AST_Destructuring extends AST_Node {
|
||||
constructor(props?: object);
|
||||
names: AST_Node[];
|
||||
is_array: boolean;
|
||||
}
|
||||
|
||||
declare class AST_PrefixedTemplateString extends AST_Node {
|
||||
constructor(props?: object);
|
||||
template_string: AST_TemplateString;
|
||||
prefix: AST_Node;
|
||||
}
|
||||
|
||||
declare class AST_TemplateString extends AST_Node {
|
||||
constructor(props?: object);
|
||||
segments: AST_Node[];
|
||||
}
|
||||
|
||||
declare class AST_TemplateSegment extends AST_Node {
|
||||
constructor(props?: object);
|
||||
value: string;
|
||||
raw: string;
|
||||
}
|
||||
|
||||
declare class AST_NameMapping extends AST_Node {
|
||||
constructor(props?: object);
|
||||
foreign_name: AST_Symbol;
|
||||
name: AST_SymbolExport | AST_SymbolImport;
|
||||
}
|
||||
|
||||
declare class AST_Import extends AST_Node {
|
||||
constructor(props?: object);
|
||||
imported_name: null | AST_SymbolImport;
|
||||
imported_names: AST_NameMapping[];
|
||||
module_name: AST_String;
|
||||
}
|
||||
|
||||
declare class AST_VarDef extends AST_Node {
|
||||
constructor(props?: object);
|
||||
name: AST_Destructuring | AST_SymbolConst | AST_SymbolLet | AST_SymbolVar;
|
||||
value: AST_Node | null;
|
||||
}
|
||||
|
||||
declare class AST_Call extends AST_Node {
|
||||
constructor(props?: object);
|
||||
expression: AST_Node;
|
||||
args: AST_Node[];
|
||||
}
|
||||
|
||||
declare class AST_New extends AST_Call {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Sequence extends AST_Node {
|
||||
constructor(props?: object);
|
||||
expressions: AST_Node[];
|
||||
}
|
||||
|
||||
declare class AST_PropAccess extends AST_Node {
|
||||
constructor(props?: object);
|
||||
expression: AST_Node;
|
||||
property: AST_Node | string;
|
||||
}
|
||||
|
||||
declare class AST_Dot extends AST_PropAccess {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Sub extends AST_PropAccess {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Unary extends AST_Node {
|
||||
constructor(props?: object);
|
||||
operator: string;
|
||||
expression: AST_Node;
|
||||
}
|
||||
|
||||
declare class AST_UnaryPrefix extends AST_Unary {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_UnaryPostfix extends AST_Unary {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Binary extends AST_Node {
|
||||
constructor(props?: object);
|
||||
operator: string;
|
||||
left: AST_Node;
|
||||
right: AST_Node;
|
||||
}
|
||||
|
||||
declare class AST_Assign extends AST_Binary {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_DefaultAssign extends AST_Binary {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Conditional extends AST_Node {
|
||||
constructor(props?: object);
|
||||
condition: AST_Node;
|
||||
consequent: AST_Node;
|
||||
alternative: AST_Node;
|
||||
}
|
||||
|
||||
declare class AST_Array extends AST_Node {
|
||||
constructor(props?: object);
|
||||
elements: AST_Node[];
|
||||
}
|
||||
|
||||
declare class AST_Object extends AST_Node {
|
||||
constructor(props?: object);
|
||||
properties: AST_ObjectProperty[];
|
||||
}
|
||||
|
||||
declare class AST_ObjectProperty extends AST_Node {
|
||||
constructor(props?: object);
|
||||
key: string | number | AST_Node;
|
||||
value: AST_Node;
|
||||
}
|
||||
|
||||
declare class AST_ObjectKeyVal extends AST_ObjectProperty {
|
||||
constructor(props?: object);
|
||||
quote: string;
|
||||
}
|
||||
|
||||
declare class AST_ObjectSetter extends AST_ObjectProperty {
|
||||
constructor(props?: object);
|
||||
quote: string;
|
||||
static: boolean;
|
||||
}
|
||||
|
||||
declare class AST_ObjectGetter extends AST_ObjectProperty {
|
||||
constructor(props?: object);
|
||||
quote: string;
|
||||
static: boolean;
|
||||
}
|
||||
|
||||
declare class AST_ConciseMethod extends AST_ObjectProperty {
|
||||
constructor(props?: object);
|
||||
quote: string;
|
||||
static: boolean;
|
||||
is_generator: boolean;
|
||||
async: boolean;
|
||||
}
|
||||
|
||||
declare class AST_Symbol extends AST_Node {
|
||||
constructor(props?: object);
|
||||
scope: AST_Scope;
|
||||
name: string;
|
||||
thedef: SymbolDef;
|
||||
}
|
||||
|
||||
declare class AST_SymbolDeclaration extends AST_Symbol {
|
||||
constructor(props?: object);
|
||||
init: AST_Node | null;
|
||||
}
|
||||
|
||||
declare class AST_SymbolVar extends AST_SymbolDeclaration {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_SymbolFunarg extends AST_SymbolVar {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_SymbolBlockDeclaration extends AST_SymbolDeclaration {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_SymbolConst extends AST_SymbolBlockDeclaration {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_SymbolLet extends AST_SymbolBlockDeclaration {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_SymbolDefClass extends AST_SymbolBlockDeclaration {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_SymbolCatch extends AST_SymbolBlockDeclaration {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_SymbolImport extends AST_SymbolBlockDeclaration {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_SymbolDefun extends AST_SymbolDeclaration {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_SymbolLambda extends AST_SymbolDeclaration {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_SymbolClass extends AST_SymbolDeclaration {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_SymbolMethod extends AST_Symbol {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_SymbolImportForeign extends AST_Symbol {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Label extends AST_Symbol {
|
||||
constructor(props?: object);
|
||||
references: AST_LoopControl | null;
|
||||
}
|
||||
|
||||
declare class AST_SymbolRef extends AST_Symbol {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_SymbolExport extends AST_SymbolRef {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_SymbolExportForeign extends AST_Symbol {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_LabelRef extends AST_Symbol {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_This extends AST_Symbol {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Super extends AST_This {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_NewTarget extends AST_Node {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Constant extends AST_Node {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_String extends AST_Constant {
|
||||
constructor(props?: object);
|
||||
value: string;
|
||||
quote: string;
|
||||
}
|
||||
|
||||
declare class AST_Number extends AST_Constant {
|
||||
constructor(props?: object);
|
||||
value: number;
|
||||
literal: string;
|
||||
}
|
||||
|
||||
declare class AST_RegExp extends AST_Constant {
|
||||
constructor(props?: object);
|
||||
value: {
|
||||
source: string,
|
||||
flags: string
|
||||
};
|
||||
}
|
||||
|
||||
declare class AST_Atom extends AST_Constant {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Null extends AST_Atom {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_NaN extends AST_Atom {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Undefined extends AST_Atom {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Hole extends AST_Atom {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Infinity extends AST_Atom {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Boolean extends AST_Atom {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_False extends AST_Boolean {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_True extends AST_Boolean {
|
||||
constructor(props?: object);
|
||||
}
|
||||
|
||||
declare class AST_Await extends AST_Node {
|
||||
constructor(props?: object);
|
||||
expression: AST_Node;
|
||||
}
|
||||
|
||||
declare class AST_Yield extends AST_Node {
|
||||
constructor(props?: object);
|
||||
expression: AST_Node;
|
||||
is_star: boolean;
|
||||
}
|
Reference in New Issue
Block a user