public PropertySpecifiers(IntLiteral index, String read, String write, ConstExpression stored, Literal @default) : this(read, write) { this.index = index; this.stored = stored; this.@default = @default; }
public PropertySpecifiers(IntLiteral index, String read, String write, ConstExpression stored, Literal @default, String impl) : this(index, read, write, stored, @default) { this.impl = impl; }