Lines Matching refs:AST_Var
1911 || stat instanceof AST_Var && declarations_only(stat);
1969 …if (stat instanceof AST_Definitions) return (lexical || stat instanceof AST_Var) && declarations_o…
3862 if (stat instanceof AST_Var) {
3874 if (stat instanceof AST_Var) continue;
4015 if (line instanceof AST_Var && declarations_only(line)) {
4137 … if (defn instanceof AST_Var && join_var_assign(defn.definitions, exprs, keep)) trimmed = true;
4261 } else if (stat instanceof AST_Var) {
4284 … } else if (prev instanceof AST_Var && (!stat.init || stat.init.TYPE == prev.TYPE)) {
4297 } else if (stat.init instanceof AST_Var) {
7017 if (node instanceof AST_Var && def.orig[0] instanceof AST_SymbolCatch) {
7023 || !(node instanceof AST_Var || is_safe_lexical(def)))) {
7381 var is_var = node instanceof AST_Var;
8255 if (node instanceof AST_Var) {
8282 if (node instanceof AST_Var) {
8328 if (defns.length > 0) hoisted.push(make_node(AST_Var, self, { definitions: defns }));
8534 self.body.splice(self.body.indexOf(tt.stack[1]) + 1, 0, make_node(AST_Var, node, {
9649 if (var_defs.length > 0) body.push(make_node(AST_Var, self, { definitions: var_defs }));
9656 … if (body_var_defs.length > 0 || alt_var_defs.length > 0) body.push(make_node(AST_Var, self, {
9843 } else if (line instanceof AST_Var) {
9859 if (stat instanceof AST_Var) {
10069 if (!(stat instanceof AST_Var)) return;
10115 AST_Var.DEFMETHOD("remove_initializers", remove_initializers(return_null));
10174 return make_node(AST_Var, stat, {
10895 if (line instanceof AST_Var) {
11022 if (!(stat instanceof AST_Var)) continue;
11196 if (!(stat instanceof AST_Var)) {
11233 if (decls.length) args.push(make_node(AST_Var, fn, { definitions: decls }));