public string Pretty(bool printPos = false) { string prettyPos = ""; if (printPos) { prettyPos = $", pos: {Position.Pretty()}"; } return($"ExprNode(value: {Value.Pretty()}{prettyPos})"); }