Lines Matching refs:toplevel
101 toplevel : !!(options && (options["module"] || options["top_retain"])),
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;
6872 var drop_vars = !(self instanceof AST_Toplevel) || compressor.toplevel.vars;
11061 if (compressor.toplevel.vars) {
13856 if (!compressor.toplevel.vars) return;
13857 if (fn.functions.size() > 0 && !compressor.toplevel.funcs) return;