Fixes bug 623915.
/* valalistliteral.vala
*
- * Copyright (C) 2009 Jürg Billeter
+ * Copyright (C) 2009-2010 Jürg Billeter
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
public override void accept (CodeVisitor visitor) {
visitor.visit_list_literal (this);
+
+ visitor.visit_expression (this);
}
public void add_expression (Expression expr) {
/* valamapliteral.vala
*
- * Copyright (C) 2009 Jürg Billeter
+ * Copyright (C) 2009-2010 Jürg Billeter
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
public override void accept (CodeVisitor visitor) {
visitor.visit_map_literal (this);
+
+ visitor.visit_expression (this);
}
public void add_key (Expression expr) {
/* valasetliteral.vala
*
- * Copyright (C) 2009 Jürg Billeter
+ * Copyright (C) 2009-2010 Jürg Billeter
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
public override void accept (CodeVisitor visitor) {
visitor.visit_set_literal (this);
+
+ visitor.visit_expression (this);
}
public void add_expression (Expression expr) {
public override void accept (CodeVisitor visitor) {
visitor.visit_tuple (this);
+
+ visitor.visit_expression (this);
}
public void add_expression (Expression expr) {