![]() |
BadScript 2
|
Go to the source code of this file.
Namespaces | |
namespace | BadScript2 |
The main namespace for the BadScript2 Language. | |
namespace | BadScript2.Runtime |
Contains the Runtime Implementation. | |
Enumerations | |
enum | BadScript2.Runtime.BadScopeFlags { BadScript2.Runtime.None = 0 , BadScript2.Runtime.AllowReturn = 1 , BadScript2.Runtime.AllowBreak = 2 , BadScript2.Runtime.AllowContinue = 4 , BadScript2.Runtime.AllowThrow = 8 , BadScript2.Runtime.CaptureReturn = 16 , BadScript2.Runtime.CaptureBreak = 32 , BadScript2.Runtime.CaptureContinue = 64 , BadScript2.Runtime.CaptureThrow = 128 , BadScript2.Runtime.Returnable = AllowReturn | CaptureReturn , BadScript2.Runtime.Breakable = AllowBreak | CaptureBreak , BadScript2.Runtime.Continuable = AllowContinue | CaptureContinue , BadScript2.Runtime.Throwable = AllowThrow , BadScript2.Runtime.RootScope = Throwable } |
Defines Different Behaviours for the Current Scope. More... | |