The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
|
Go to the source code of this file.
Classes | |
class | TypeSystem.AccessModifier |
Association Class between ClassType and MethodType (or Fields). Represents the access modifier information about a concrete attribute and its class. More... | |
Namespaces | |
package | TypeSystem |
The implementation of the StaDyn type system rules. | |
Enumerations | |
enum | TypeSystem.Modifier { TypeSystem.Modifier.Public = 2, TypeSystem.Modifier.Protected = 4, TypeSystem.Modifier.Internal = 8, TypeSystem.Modifier.Private = 16, TypeSystem.Modifier.Static = 32, TypeSystem.Modifier.Abstract = 64, TypeSystem.Modifier.New = 128, TypeSystem.Modifier.Override = 256, TypeSystem.Modifier.Virtual = 512, TypeSystem.Modifier.AccessLevel = Public | Protected | Private | Internal, TypeSystem.Modifier.CanRead = 1024, TypeSystem.Modifier.CanWrite = 2048 } |
Indicates differents modifiers to use in class (only public, internal or static), fields or methods. More... | |