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, name: name,
pos: pos, pos: pos,
access: [APublic], access: [APublic],
kind: FProp(noread ? 'null' : 'get_' + name, nowrite ? 'null' : ('set_' + name), t), kind: FProp(noread ? 'null' : 'get', nowrite ? 'null' : 'set', t),
} }
return ret; return ret;
} }