2008-07-07 Jürg Billeter <j@bitron.ch>
* vala/valaproperty.vala:
Mark source_reference parameter in creation method as nullable
svn path=/trunk/; revision=1682
+2008-07-07 Jürg Billeter <j@bitron.ch>
+
+ * vala/valaproperty.vala:
+
+ Mark source_reference parameter in creation method as nullable
+
2008-07-07 Jürg Billeter <j@bitron.ch>
* vala/valacharacterliteral.vala:
* @param source reference to source code
* @return newly created property
*/
- public Property (string name, DataType property_type, PropertyAccessor? get_accessor, PropertyAccessor? set_accessor, SourceReference source_reference) {
+ public Property (string name, DataType property_type, PropertyAccessor? get_accessor, PropertyAccessor? set_accessor, SourceReference? source_reference = null) {
this.name = name;
this.property_type = property_type;
this.get_accessor = get_accessor;