SwensenSoftware / unquote

Write F# unit test assertions as quoted expressions, get step-by-step failure messages for free
http://www.swensensoftware.com/unquote
Apache License 2.0
285 stars 26 forks source link

Decompile non-prefix and non-infix functions with operator-based names using operator symbols #84

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
For example,

> let (+) x y z = x - y - z;;

val ( + ) : int -> int -> int -> int

> decompile <@ (+) 3 3 3 @>;;
val it : string = "op_Addition 3 3 3"

is correct, but we'd like to print "(+) 3 3 3"

Original issue reported on code.google.com by stephen....@gmail.com on 23 Apr 2012 at 2:25

GoogleCodeExporter commented 9 years ago
This issue was closed by revision r534.

Original comment by stephen....@gmail.com on 12 May 2012 at 3:38

GoogleCodeExporter commented 9 years ago

Original comment by stephen....@gmail.com on 20 May 2012 at 4:23