From: Rico Tzschichholz Date: Thu, 18 Jan 2018 19:41:08 +0000 (+0100) Subject: vala: Skip default-value positioning check for parameters of coroutines X-Git-Tag: 0.38.5~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6d2254d84a079b8c10b0b0e034cc3e15510b4fe;p=thirdparty%2Fvala.git vala: Skip default-value positioning check for parameters of coroutines https://bugzilla.gnome.org/show_bug.cgi?id=644241 --- diff --git a/vala/valamethod.vala b/vala/valamethod.vala index 4dad2daa5..9ce98cfb3 100644 --- a/vala/valamethod.vala +++ b/vala/valamethod.vala @@ -727,6 +727,10 @@ public class Vala.Method : Subroutine, Callable { error = true; Report.error (param.source_reference, "Reference parameters are not supported for async methods"); } + // TODO: begin and end parameters must be checked separately for coroutines + if (coroutine) { + continue; + } if (optional_param && param.initializer == null && !param.ellipsis) { Report.warning (param.source_reference, "parameter without default follows parameter with default"); } else if (param.initializer != null) {