public SwitchStatementBuilder Case(SourceLocation header, int value, Statement body) {
     _cases.Add(Ast.SwitchCase(header, value, body));
     return this;
 }