public class PropertyAccessor : CodeNode {
public weak Property prop { get; set; } ;
public weak bool readable { get; set; } ;
public weak bool writable { get; set; } ;
public weak bool construction { get; set; } ;
public weak SymbolAccessibility access { get; set; } ;
public Block? body { get; set; } ;
public BasicBlock entry_block { get; set; } ;
public BasicBlock exit_block { get; set; } ;
public weak bool automatic_body { get; set; } ;
public FormalParameter value_parameter { get; set; } ;
public PropertyAccessor ( bool readable,
bool writable,
bool construction,
Block? body,
SourceReference? source_reference ) ;
}

public PropertyAccessor ( bool readable,
bool writable,
bool construction,
Block? body,
SourceReference? source_reference ) ;
public weak Property prop { get; set; } ;
public weak bool readable { get; set; } ;
public weak bool writable { get; set; } ;
public weak bool construction { get; set; } ;
public weak SymbolAccessibility access { get; set; } ;
public Block? body { get; set; } ;
public BasicBlock entry_block { get; set; } ;
public BasicBlock exit_block { get; set; } ;
public weak bool automatic_body { get; set; } ;
public FormalParameter value_parameter { get; set; } ;
Created by Valadoc