A simple scripting language in C++
Ferenc Szontágh
2025-04-19 55abb4f6f81fc370e349385b38dffb05fa9d5dcb
src/Parser/ParsedExpression.hpp
@@ -30,6 +30,10 @@
    // For function call arguments
    std::vector<ParsedExpressionPtr> args;
    std::vector<std::pair<std::string, ParsedExpressionPtr>> objectMembers;
    // Source location for error reporting
    std::string filename;
    int line = 0;
    size_t column = 0;
    // Constructor for literal
    static ParsedExpressionPtr makeLiteral(const Symbols::Value & val) {