/* valacodewriter.vala
*
- * Copyright (C) 2006-2012 Jürg Billeter
+ * Copyright (C) 2006-2014 Jürg Billeter
* Copyright (C) 2006-2008 Raffaele Sandrini
*
* This library is free software; you can redistribute it and/or
continue;
}
- if (!(node is Parameter)) {
+ if (!(node is Parameter) && !(node is PropertyAccessor)) {
write_indent ();
}
stream.printf (")");
}
stream.printf ("]");
- if (node is Parameter) {
+ if (node is Parameter || node is PropertyAccessor) {
write_string (" ");
} else {
write_newline ();