This commit is contained in:
Juraj Kirchheim
2019-01-02 16:59:06 +01:00

View File

@@ -9,7 +9,7 @@ abstract Member(Field) from Field to Field {
name: name,
pos: pos,
access: [APublic],
kind: FProp(noread ? 'null' : 'get_' + name, nowrite ? 'null' : ('set_' + name), t),
kind: FProp(noread ? 'null' : 'get', nowrite ? 'null' : 'set', t),
}
return ret;
}
@@ -202,4 +202,4 @@ abstract Member(Field) from Field to Field {
if (add != null)
this.access.push(add);
}
}
}