-
Notifications
You must be signed in to change notification settings - Fork 2
Definition
jayconrod edited this page Jun 18, 2011
·
1 revision
A definition is a structure that defines some entity in Tungsten code, such as a function, or class. Some kinds of definitions are always globally scoped. Others are defined within other definitions. Every definition has a unique name (within the module) and a list of annotations.
The following is a list of all definitions in Tungsten:
- Annotation
- Block (defined within Function)
- Class
- Field (defined within Class and Struct)
- Function
- Global
- Instruction (defined within Block)
- Interface
- Parameter (defined within Function and Block)
- Struct
- TypeParameter (defined within Class, Interface, and Function)