beancount
beancount copied to clipboard
Access to unevaluated expressions
Currently we evaluate numerical expressions while parsing. I guess for some use-cases it is more useful to get access to the expression instead. I'm thinking it would be great if we could give access to both.
One option could be to replace Decimal with something like NumExpr { result: Decimal, source: Option<&str> } at the places where expressions are allowed.