mirror of
https://codeberg.org/ProgramSnail/lang.git
synced 2025-12-07 07:28:45 +00:00
fixes, expression printers
This commit is contained in:
parent
3669084f55
commit
bf49f4030c
9 changed files with 349 additions and 101 deletions
|
|
@ -58,9 +58,9 @@ public:
|
|||
is_on_heap_(is_on_heap), is_optional_(is_optional),
|
||||
is_result_(is_result) {}
|
||||
|
||||
std::string *get_name() { return name_.get(); }
|
||||
Identifier *get_name() { return &name_; }
|
||||
|
||||
const std::string *get_name() const { return name_.get(); }
|
||||
const Identifier *get_name() const { return &name_; }
|
||||
|
||||
size_t get_parametrs_size() const { return parameters_.size(); }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue