Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: string inspect retuns quoted string #104

Merged
merged 2 commits into from
Dec 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/ast/function_expression.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ struct function_expression : callable_expression
auto compile(compiler& comp) const -> void override;

const statement* body {};
mutable std::string name;
std::string name;
};
2 changes: 1 addition & 1 deletion source/eval/object.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ struct string_object : hashable_object

[[nodiscard]] auto type() const -> object_type override { return object_type::string; }

[[nodiscard]] auto inspect() const -> std::string override { return value; }
[[nodiscard]] auto inspect() const -> std::string override { return fmt::format(R"("{}")", value); }

[[nodiscard]] auto hash_key() const -> hash_key_type override;

Expand Down
Loading