summaryrefslogtreecommitdiff
path: root/vala/valabreakstatement.vala
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2020-10-24 14:11:43 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2020-10-24 14:53:21 +0200
commitb202924bd4981138e08eedc59269140192c7b21a (patch)
treef37b2e9a3d1cb0ef7da467f5c81a39f60f2690c2 /vala/valabreakstatement.vala
parenta74d7ac29f2fd0717fafd2f126c586b9b63dc71c (diff)
downloadvala-b202924bd4981138e08eedc59269140192c7b21a.tar.gz
vala: CodeNode.source_reference is optional, so let the API respect that
Diffstat (limited to 'vala/valabreakstatement.vala')
-rw-r--r--vala/valabreakstatement.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/vala/valabreakstatement.vala b/vala/valabreakstatement.vala
index e8f2dd8bf..d1c0a10c6 100644
--- a/vala/valabreakstatement.vala
+++ b/vala/valabreakstatement.vala
@@ -32,7 +32,7 @@ public class Vala.BreakStatement : CodeNode, Statement {
* @param source reference to source code
* @return newly created break statement
*/
- public BreakStatement (SourceReference? source) {
+ public BreakStatement (SourceReference? source = null) {
source_reference = source;
}