From ca3c1694bf3478c67ca05f456971ecc1f14d7dc8 Mon Sep 17 00:00:00 2001 From: Rico Tzschichholz Date: Tue, 18 Jan 2022 18:42:11 +0100 Subject: [PATCH] vala: Implement missing YieldStatement.accept() --- vala/valayieldstatement.vala | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vala/valayieldstatement.vala b/vala/valayieldstatement.vala index 7148f3b74..111a40ccd 100644 --- a/vala/valayieldstatement.vala +++ b/vala/valayieldstatement.vala @@ -34,6 +34,10 @@ public class Vala.YieldStatement : CodeNode, Statement { this.source_reference = source_reference; } + public override void accept (CodeVisitor visitor) { + visitor.visit_yield_statement (this); + } + public override bool check (CodeContext context) { if (checked) { return !error; -- 2.47.2