diff options
author | Jakub Dupak <dev@jakubdupak.com> | 2022-11-15 15:44:48 +0100 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2023-02-21 12:36:48 +0100 |
commit | 638f65b20832751c8f32e7bac8411fb7cd2ac60f (patch) | |
tree | 74b13522979b00eecb29cc3bdd6f377044e0795e | |
parent | ca06115eac10f17d69bb83d84241a4636aafd188 (diff) | |
download | gcc-638f65b20832751c8f32e7bac8411fb7cd2ac60f.zip gcc-638f65b20832751c8f32e7bac8411fb7cd2ac60f.tar.gz gcc-638f65b20832751c8f32e7bac8411fb7cd2ac60f.tar.bz2 |
gccrs: ast: Dump impl trait type
gcc/rust/ChangeLog:
* ast/rust-ast-dump.cc (Dump::visit): Add missing visitor.
Signed-off-by: Jakub Dupak <dev@jakubdupak.com>
-rw-r--r-- | gcc/rust/ast/rust-ast-dump.cc | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/gcc/rust/ast/rust-ast-dump.cc b/gcc/rust/ast/rust-ast-dump.cc index 2f01c72..1d593d4 100644 --- a/gcc/rust/ast/rust-ast-dump.cc +++ b/gcc/rust/ast/rust-ast-dump.cc @@ -1610,8 +1610,16 @@ Dump::visit (TraitBound &bound) } void -Dump::visit (ImplTraitType &) -{} +Dump::visit (ImplTraitType &type) +{ + // Syntax: + // impl TypeParamBounds + // TypeParamBounds : + // TypeParamBound ( + TypeParamBound )* +? + + stream << "impl "; + visit_items_joined_by_separator(type.get_type_param_bounds (), " + "); +} void Dump::visit (TraitObjectType &) |