StatementKind Enum
From The Oxygene Language Wiki
This is a Language topic
Feel free to add your notes to this topic below.
This enumeration is used by the Statement Class and its descendant to have a fast way to differentiate between the different kinds of statements.
Namespace: Cirrus Statements
Enum Values
| | |
|---|---|
| Assignment | A standalone call or assignment statement |
| Begin | Begin/end statement |
| Break | A call to break out of a loop |
| Case | A case of statement |
| Continue | Call to continue the next iteration of a loop |
| Exit | Call to exit the function |
| For | A for loop |
| ForIn | A for each in loop |
| If | An IF statement |
| Locking | A locking statement |
| PlaceHolder | Placeholder that will be replaced with the original method body |
| Raise | A raise exception statement |
| Repeat | A repeat/until loop |
| Try | A try/except or try/finally statement |
| Using | A using statement |
| While | A while loop |
| With | A with statement |
See Also
- Cirrus
- External Links:
- Prism Aspects to Help with Monobjc Development (RemObjects Blogs)
Area: Oxygene Language
Compiler version: Oxygene 5
Language Glossary — Keywords — Types — FAQ — How To