summaryrefslogtreecommitdiff
path: root/vala/valareturnstatement.vala
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2021-10-25 09:13:51 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2021-10-25 09:15:30 +0200
commit01affa4019bab9c4cc2366cd2224148c1bfb3bea (patch)
treeeb1715d9c17a0d8d05e6d744a35435d6a59a75ea /vala/valareturnstatement.vala
parent9c2566584ec7f50715a7490c7d4e112506045585 (diff)
downloadvala-01affa4019bab9c4cc2366cd2224148c1bfb3bea.tar.gz
Revert "Use ErrorType-based collection for CodeNode.get_error_types()"
Unfortunately, it is causing issues with the way the GIR/GIDL parser works. This reverts commit 0751a9e3bf46fc830d3e7ca3d0cfd3ae48846e68.
Diffstat (limited to 'vala/valareturnstatement.vala')
-rw-r--r--vala/valareturnstatement.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/vala/valareturnstatement.vala b/vala/valareturnstatement.vala
index 7a9f14c45..3873083ee 100644
--- a/vala/valareturnstatement.vala
+++ b/vala/valareturnstatement.vala
@@ -70,7 +70,7 @@ public class Vala.ReturnStatement : CodeNode, Statement {
}
}
- public override void get_error_types (Collection<ErrorType> collection, SourceReference? source_reference = null) {
+ public override void get_error_types (Collection<DataType> collection, SourceReference? source_reference = null) {
if (return_expression != null) {
return_expression.get_error_types (collection, source_reference);
}