public static void IfTrueReturnNull(this CodeWriter writer, String condition) => writer.LineOfCode($"if ({condition}) return null;");
public static void VarAssign(this CodeWriter writer, String left, String right) => writer.LineOfCode($"var {left} = {right};");
public static void IfNullReturnNull(this CodeWriter writer, String operand) => writer.LineOfCode($"if ({operand} == null) return null;");
public _IndentationScope(CodeWriter gen) { this.writer = gen; this.writer.__INDENTATION_LEVEL++; }