summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2022-01-18 18:42:11 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2022-02-16 18:30:51 +0100
commit6d3393d17b6826dcb6256f032360d8ab4b8ea8f9 (patch)
tree036c2824556452e66590ebfdeb697fdefb608a0d
parentea1d2aedd77b5a84617fce0e2942a284ce59b5b9 (diff)
downloadvala-6d3393d17b6826dcb6256f032360d8ab4b8ea8f9.tar.gz
vala: Implement missing YieldStatement.accept()
-rw-r--r--vala/valayieldstatement.vala4
1 files changed, 4 insertions, 0 deletions
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;