Boo.Lang.Compiler.Steps.BranchChecking.LeaveRaiseStatement C# (CSharp) Method

LeaveRaiseStatement() public method

public LeaveRaiseStatement ( Boo.Lang.Compiler.Ast.RaiseStatement node ) : void
node Boo.Lang.Compiler.Ast.RaiseStatement
return void
        public override void LeaveRaiseStatement(RaiseStatement node)
        {
            if (node.Exception != null) return;
            if (_state.InExceptionHandler) return;
            Error(CompilerErrorFactory.ReRaiseOutsideExceptionHandler(node));
        }