search for: function_param

Displaying 1 result from an estimated 1 matches for "function_param".

2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...ld; + +public: + prefix_expr(string_ref prefix, node* child) + : prefix(prefix), child(child) {} + + void print_left(stream& s) const override + { + s += prefix; + s += "("; + child->print(s); + s += ")"; + } +}; + +class function_param : public expr +{ + string_ref number; +public: + function_param(string_ref number) : number(number) {} + + void print_left(stream& s) const override + { + s += "fp"; + s += number; + } +}; + +class expr_list : public expr +{ + size_t nchildren; + nod...