| /plugin/asciidocjs/node_modules/uglify-js/lib/ |
| D | minify.js | 23 function read_source_map(name, toplevel) { argument 24 var comments = toplevel.end.comments_after; 92 toplevel: !!(options && options["module"]), property 108 … if (options.toplevel) set_shorthand("toplevel", options, [ "compress", "mangle", "rename" ]); 121 toplevel: false, property 157 var toplevel; 160 toplevel = files; 163 options.parse.toplevel = null; 171 options.parse.toplevel = toplevel = parse(files[name], options.parse); 173 var inlined_content = read_source_map(name, toplevel); [all …]
|
| D | parse.js | 691 toplevel : null, property 810 var statement = embed_tokens(function(toplevel) { argument 849 if (!toplevel && options.module !== "") unexpected(); 855 if (!toplevel && options.module !== "") unexpected(); 2576 var toplevel = options.toplevel; 2577 if (toplevel) { 2578 toplevel.body = toplevel.body.concat(body); 2579 toplevel.end = end; 2581 toplevel = new AST_Toplevel({ start: start, body: body, end: end }); 2583 return toplevel;
|
| D | scope.js | 107 if (!options.toplevel && this.global) return true; 599 toplevel : false, property 726 … if (parent instanceof AST_Block) return parent instanceof AST_Toplevel && !options.toplevel;
|
| D | compress.js | 101 toplevel : !!(options && (options["module"] || options["top_retain"])), property 178 var toplevel = this.options["toplevel"]; 179 this.toplevel = typeof toplevel == "string" ? { 180 funcs: /funcs/.test(toplevel), 181 vars: /vars/.test(toplevel) 183 funcs: toplevel, 184 vars: toplevel 228 var toplevel = this.toplevel; 230 return toplevel[sym instanceof AST_SymbolDefun ? "funcs" : "vars"]; 6871 var drop_funcs = !(self instanceof AST_Toplevel) || compressor.toplevel.funcs; [all …]
|
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/tools/ |
| D | node.js | 73 var toplevel = null, 80 toplevel = UglifyJS.AST_Node.from_mozilla_ast(files); 90 toplevel = UglifyJS.parse(code, { 92 toplevel: toplevel, property 113 toplevel = toplevel.wrap_commonjs(options.wrap, options.exportAll); 120 toplevel.figure_out_scope(options.mangle); 122 toplevel = sq.compress(toplevel); 128 toplevel = UglifyJS.mangle_properties(toplevel, options.mangleProperties); 134 toplevel.figure_out_scope(options.mangle); 135 toplevel.compute_char_frequency(options.mangle); [all …]
|
| /plugin/asciidocjs/node_modules/uglify-js/bin/ |
| D | uglifyjs | 323 files = convert_ast(function(toplevel, name) { 342 program: toplevel, 360 files = convert_ast(function(toplevel, name) { 362 if (!toplevel) return obj; 363 toplevel.body = toplevel.body.concat(obj.body); 364 return toplevel; 413 var toplevel = result.ast; 414 if (!(toplevel instanceof UglifyJS.AST_Toplevel)) { 415 … if (!(toplevel instanceof UglifyJS.AST_Statement)) toplevel = new UglifyJS.AST_SimpleStatement({ 416 body: toplevel, [all …]
|
| /plugin/lms/_test/data/pages/ |
| D | lms.txt | 14 * [[:toplevel]]
|
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/ |
| D | README.md | 211 - `toplevel` — mangle names declared in the toplevel scope (disabled by 377 - `toplevel` -- drop unreferenced functions (`"funcs"`) and/or variables (`"vars"`) 378 in the toplevel scope (`false` by default, `true` to drop both unreferenced 381 - `top_retain` -- prevent specific toplevel functions and variables from `unused` 382 removal (can be array, comma-separated, RegExp or function. Implies `toplevel`) 597 needs to be kept in the output) are comments attached to toplevel nodes. 674 There's a single toplevel function which combines all the steps. If you 789 - `toplevel` — mangle names declared in the toplevel scope (disabled by 815 UglifyJS.minify("tst.js", { mangle: { toplevel: true } }).code; 847 - `toplevel` — a `toplevel` node (as returned by a previous invocation of [all …]
|
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/ |
| D | parse.js | 702 toplevel : null, property 1589 var toplevel = options.toplevel; 1590 if (toplevel) { 1591 toplevel.body = toplevel.body.concat(body); 1592 toplevel.end = end; 1594 toplevel = new AST_Toplevel({ start: start, body: body, end: end }); 1596 return toplevel;
|
| D | scope.js | 64 return (this.global && !options.toplevel) 401 toplevel : false, property
|
| D | compress.js | 82 toplevel : !!(options && options["top_retain"]), property 254 var toplevel = compressor.option("toplevel"); 308 if (!toplevel && d.global || is_safe(d)) { 454 } else if (toplevel || !def.global || def.orig[0] instanceof AST_SymbolConst) { 626 var toplevel = compressor.option("toplevel"); 665 || var_name == "arguments" || (!toplevel && def.global)) { 1902 var toplevel = compressor.option("toplevel"); 1904 && (!(self instanceof AST_Toplevel) || toplevel) 1908 var drop_funcs = /funcs/.test(toplevel); 1909 var drop_vars = /vars/.test(toplevel); [all …]
|
| /plugin/asciidocjs/node_modules/uglify-js/ |
| D | README.md | 121 --module Process input as ES module (implies --toplevel) 141 --toplevel Compress and/or mangle variables in top level scope. 222 uglifyjs file.js -c toplevel,sequences=false 407 The `toplevel` option: 413 var options = { toplevel: true }; 423 toplevel: true, 466 toplevel: true, 535 alongside with `toplevel` enabled. 554 - `toplevel` (default: `false`) — set to `true` if you wish to enable top level 589 toplevel: false, [all …]
|
| /plugin/formatplus2/ |
| D | README | 55 The editor buttons are added in a sub-menu of the toolbar. If the ''toplevel''
|
| /plugin/formatplus/ |
| D | README | 55 The editor buttons are added in a sub-menu of the toolbar. If the ''toplevel''
|
| /plugin/mediasyntax/ |
| D | helper.php | 16 public $toplevel = 0; variable in helper_plugin_mediasyntax
|
| /plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/bin/ |
| D | uglifyjs | 362 toplevel : TOPLEVEL,
|
| /plugin/asciidocjs/node_modules/acorn/ |
| D | README.md | 163 `program` option in subsequent parses. This will add the toplevel
|
| /plugin/asciidocjs/node_modules/with/node_modules/acorn/ |
| D | README.md | 161 `program` option in subsequent parses. This will add the toplevel
|
| /plugin/jquery/ |
| D | jquery-1.4.2.js | 438 var toplevel = false; 441 toplevel = window.frameElement == null; 444 if ( document.documentElement.doScroll && toplevel ) {
|
| /plugin/asciidocjs/node_modules/@asciidoctor/opal-runtime/src/ |
| D | index.mjs | 5548 return $Kernel.$raise("main.using is permitted only at toplevel")
|
| D | index.cjs | 5557 return $Kernel.$raise("main.using is permitted only at toplevel")
|