fn nodeIsIfForWhileSwitch(tag: Ast.Node.Tag) bool
fn nodeIsIfForWhileSwitch(tag: Ast.Node.Tag) bool { return switch (tag) { .@"if", .if_simple, .@"for", .for_simple, .@"while", .while_simple, .while_cont, .@"switch", .switch_comma, => true, else => false, }; }