get or set is Expected

Description

When a property is described, no specifier defining availability of the property is specified.

Troubleshooting Tips

Add the required specifier defining availability of the property. Property description syntax is given in the Properties Description section.

Example

Class MyClass: Object
    Property Item: Integer
    
    End Property items;
End Class MyClass;

When the specified code is compiled, the following error is displayed: get or set is expected. To resolve the error, specify the required access identifier according to the new properties' syntax.

See also:

Compiler Messages