diff options
Diffstat (limited to 'gcc/go/gofrontend/expressions.h')
-rw-r--r-- | gcc/go/gofrontend/expressions.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/go/gofrontend/expressions.h b/gcc/go/gofrontend/expressions.h index 6f74f73..ec59846 100644 --- a/gcc/go/gofrontend/expressions.h +++ b/gcc/go/gofrontend/expressions.h @@ -43,6 +43,7 @@ class Import; class Temporary_statement; class Label; class Ast_dump_context; +class String_dump; // The base class for all expressions. @@ -1043,6 +1044,10 @@ class String_expression : public Expression tree do_get_tree(Translate_context*); + // Write string literal to a string dump. + static void + export_string(String_dump* exp, const String_expression* str); + void do_export(Export*) const; |