Home
last modified time | relevance | path

Searched refs:croak (Results 1 – 5 of 5) sorted by relevance

/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/ !
Dparse.js745 function croak(msg, line, col, pos) { function
755 croak(msg, token.line, token.col);
904 croak("'return' outside of function");
927 croak("Illegal newline after 'throw'");
952 croak("Strict mode may not include a with statement");
971 croak("Label " + label.name + " defined twice");
984 croak("Continue label `" + label.name + "` refers to non-IterationStatement.",
1004 croak("Undefined label " + label.name);
1008 croak(type.TYPE + " not inside a loop or switch");
1024 croak("Only one variable declaration allowed in for..in loop");
[all …]
Dutils.js104 DefaultsError.croak = function(msg, defs) { function in DefaultsError
108 function defaults(args, defs, croak) { argument
112 if (croak) for (var i in ret) if (HOP(ret, i) && !HOP(defs, i))
113 DefaultsError.croak("`" + i + "` is not a supported option", defs);
/plugin/asciidocjs/node_modules/uglify-js/lib/ !
Dparse.js738 function croak(msg, line, col, pos) { function
748 croak(msg, token.line, token.col);
953 croak("'return' outside of function");
974 croak("Illegal newline after 'throw'");
991 croak("Strict mode may not include a with statement");
1012 croak("Label " + label.name + " defined twice");
1048 } else if (S.in_loop == 0) croak(type.TYPE + " not inside a loop or switch");
1672 if (default_branch) croak("More than one default clause in switch statement");
1718 croak("Missing catch/finally blocks");
1736 croak("Missing initializer in declaration");
[all …]
Dutils.js81 function defaults(args, defs, croak) { argument
82 if (croak) for (var i in args) {
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/bin/ !
Duglifyjs146 UglifyJS.DefaultsError.croak = function(msg, defs) {