Boo.Lang.Compiler.Steps.MethodBodyState.LeaveExceptionHandler C# (CSharp) Method

LeaveExceptionHandler() public method

public LeaveExceptionHandler ( ) : void
return void
        public void LeaveExceptionHandler()
        {
            --_exceptionHandlerDepth;
        }

Usage Example

Example #1
0
 override public void OnExceptionHandler(ExceptionHandler node)
 {
     _state.EnterExceptionHandler();
     Visit(node.Block);
     _state.LeaveExceptionHandler();
 }