Home
last modified time | relevance | path

Searched refs:DefaultsError (Results 1 – 4 of 4) sorted by relevance

/plugin/asciidocjs/node_modules/uglify-js/lib/
Dutils.js72 function DefaultsError(msg, defs) { class
76 DefaultsError.prototype = Object.create(Error.prototype);
77 DefaultsError.prototype.constructor = DefaultsError;
78 DefaultsError.prototype.name = "DefaultsError";
79 configure_error_stack(DefaultsError);
83 …if (HOP(args, i) && !HOP(defs, i)) throw new DefaultsError("`" + i + "` is not a supported option"…
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dutils.js95 function DefaultsError(msg, defs) { class
99 DefaultsError.prototype = Object.create(Error.prototype);
100 DefaultsError.prototype.constructor = DefaultsError;
101 DefaultsError.prototype.name = "DefaultsError";
102 configure_error_stack(DefaultsError);
104 DefaultsError.croak = function(msg, defs) {
105 throw new DefaultsError(msg, defs);
113 DefaultsError.croak("`" + i + "` is not a supported option", defs);
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/tools/
Dexports.js2 exports["DefaultsError"] = DefaultsError;
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/bin/
Duglifyjs146 UglifyJS.DefaultsError.croak = function(msg, defs) {
410 if (ex instanceof UglifyJS.DefaultsError) {