F #: Why can't I set a breakpoint on the line where the scope is closed?

myList |> List.filter (fun item ->
    if item.MyValue < 10 then
        sideEffect ()
        true
    else
        false )

If I set a breakpoint at false ), it will be ignored / skipped.

I need:

        false
)

I am not very interested in knowing why this is happening (it is fairly easy to make an educated guess), as in understanding whether this will ever be considered.

+5
source share
1 answer

VS2012, ( , ). " " VS2010, ; * (, , , F #?), .

(* - : / , , - # F # (, , F #)., , , , VS Debugger:

http://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/2206747-function-return-value-in-debugger

.)

, ; , , , , .

+5

All Articles