var begin = get_location ();
var access = parse_access_modifier ();
var flags = parse_member_declaration_modifiers ();
+ if (context.profile == Profile.DOVA) {
+ accept (TokenType.VOLATILE);
+ }
var type = parse_type (true, true);
string id = parse_identifier ();
direction = ParameterDirection.REF;
}
+ if (context.profile == Profile.DOVA) {
+ accept (TokenType.VOLATILE);
+ }
DataType type;
if (direction == ParameterDirection.IN) {
// in parameters are unowned by default