mirror of
https://gcc.gnu.org/git/gcc.git
synced 2026-02-22 20:01:22 -05:00
gccrs: ast: Dump impl trait type one bound
gcc/rust/ChangeLog: * ast/rust-ast-dump.cc (Dump::visit): Add missing visitor. Signed-off-by: Jakub Dupak <dev@jakubdupak.com>
This commit is contained in:
committed by
Arthur Cohen
parent
ae1f6b3a96
commit
ca06115eac
@@ -1622,8 +1622,14 @@ Dump::visit (ParenthesisedType &)
|
||||
{}
|
||||
|
||||
void
|
||||
Dump::visit (ImplTraitTypeOneBound &)
|
||||
{}
|
||||
Dump::visit (ImplTraitTypeOneBound &type)
|
||||
{
|
||||
// Syntax:
|
||||
// impl TraitBound
|
||||
|
||||
stream << "impl ";
|
||||
visit (type.get_trait_bound());
|
||||
}
|
||||
|
||||
void
|
||||
Dump::visit (TraitObjectTypeOneBound &)
|
||||
|
||||
Reference in New Issue
Block a user