Open
Description
For my project, I need to parse expressions and get a list of used symbols in that expression. This would look something like this:
String input = "x+y*z+3";
Expression e = Parser().parse(input);
List<String> symbols = e.symbols; // ["x", "y", "z"]
Is that possible with the current state? I couldn't find the function on my own.