viZu opened this issue 9 years ago · 0 comments
NestedExpression should be really nested. Instead of varName the previous Expression should be given, otherwise generating might not possible. E.g. "15".toInt would generate std::stoi(15) instead of std::stoi("15")
"15".toInt
std::stoi(15)
std::stoi("15")