Home
last modified time | relevance | path

Searched refs:AST_Directive (Results 1 – 11 of 11) sorted by relevance

/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dast.js137 var AST_Directive = DEFNODE("Directive", "value scope quote", { variable
344 if (node instanceof AST_Directive && node.value == "$ORIG") {
365 if (node instanceof AST_Directive) {
988 } else if (node instanceof AST_Directive && !this.directives[node.value]) {
1016 if (!(st instanceof AST_Directive)) break;
Dmozilla-ast.js53 body[i] = new AST_Directive({
276 def_to_moz(AST_Directive, function To_Moz_Directive(M) {
Doutput.js455 …if (self instanceof AST_Directive && self.value == "use asm" && stream.parent() instanceof AST_Sco…
701 DEFPRINT(AST_Directive, function(self, output){
716 if (in_directive === true && !(stmt instanceof AST_Directive ||
1396 DEFMAP(AST_Directive, basic_sourcemap_gen);
Dscope.js478 else if (node instanceof AST_Directive)
Dparse.js826 return dir ? new AST_Directive(stat.body) : stat;
Dcompress.js872 } else if (stat instanceof AST_Directive) {
1864 OPT(AST_Directive, function(self, compressor){
2188 if (node instanceof AST_Directive) {
/plugin/asciidocjs/node_modules/uglify-js/lib/
Doutput.js890 DEFPRINT(AST_Directive, function(output) {
918 if (stmt instanceof AST_Directive) {
1931 AST_Directive,
Dast.js267 var AST_Directive = DEFNODE("Directive", "quote value", { variable
Dmozilla-ast.js767 def_to_moz(AST_Directive, function To_Moz_Directive(M) {
1118 body[i] = new AST_Directive(node);
Dcompress.js310 if (node instanceof AST_Directive) node = make_node(AST_SimpleStatement, node, {
319 if (value instanceof AST_String) return make_node(AST_Directive, value);
360 if (stat instanceof AST_Directive) return make_node(AST_String, stat);
3519 if (stat instanceof AST_Directive) {
4448 if (!(stat instanceof AST_Directive)) break;
4967 if (!(stat instanceof AST_Directive)) return stat;
6181 OPT(AST_Directive, function(self, compressor) {
6295 if (stat instanceof AST_Directive) continue;
7708 && self.body[0] instanceof AST_Directive
8269 if (node instanceof AST_Directive) {
Dparse.js826 return dir ? new AST_Directive(body) : new AST_SimpleStatement({ body: body });