Contains the Runtime Implementation.
BadScopeFlags
Defines Different Behaviours for the Current Scope.
@ Returnable
Shorthand for AllowReturn | CaptureReturn.
@ RootScope
Shorthand for Root Scope.
@ CaptureBreak
Indicates that the current scope should capture the break and should not pass it to the parent scope.
@ Continuable
Shorthand for AllowContinue | CaptureContinue.
@ Breakable
Shorthand for AllowBreak | CaptureBreak.
@ None
No Special Behaviour.
@ AllowReturn
Allows the usage of the Return Keyword.
@ CaptureReturn
Indicates that the current scope should capture the return and should not pass it to the parent scope...
@ AllowBreak
Allows the usage of the Break Keyword.
@ AllowContinue
Allows the usage of the Continue Keyword.
@ CaptureThrow
Indicates that the current scope should capture the throw and should not pass it to the parent scope.
@ AllowThrow
Allows the usage of the Throw Keyword.
@ Throwable
Shorthand for AllowThrow.
@ CaptureContinue
Indicates that the current scope should capture the continue and should not pass it to the parent sco...