Wiki

Changes between Version 4 and Version 5 of Classes

Show
Ignore:
Timestamp:
08/13/08 07:56:02 (16 years ago)
Author:
hopscc
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Classes

    v4 v5  
    5959        [<DocString>] 
    6060 
    61     var _<variableName> [as <Type>] = <initialValue> 
     61    var <variableName> [as <Type>] = <initialValue> 
    6262        [is <AccessModifiers>] 
    6363        [has <Attributes>] 
     
    8080If the name is prefixed with an '''_''' its accessType defaults to ''protected'' and it is directly accessable from within the class method code.[[BR]] 
    8181 
    82 Without that prefix on the name the variables  accessType is ''public'' (by default) and  
    83 it must be accessed from within method code by prefixing the name with either '''self.''' or just '''.'''.[[BR]] 
    84  
    85 In either case the default accessModifier setting can be adjusted with an accessModifier clause. 
     82Without that prefix on the name the variables  accessType is ''public, virtual'' (by default) and  
     83it must be accessed from within method code by prefixing the name with either '''this.''' or just '''.''' .[[BR]] 
     84 
     85In either case the default accessModifier setting can be adjusted with an accessModifier clause.[[BR]] 
    8686All Class and Instance variable names must start with a lowerCase Letter 
    8787