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

EnterExceptionHandler() public method

public EnterExceptionHandler ( ) : void
return void
        public void EnterExceptionHandler()
        {
            ++_exceptionHandlerDepth;
        }

Usage Example

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