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

Support function and value names that require being surrounded by back-ticks #87

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
For starters, need to consider spaces in names or names that are reserved words.

The following are not correct:

> let ``hello world`` = 0;;

val ( hello world ) : int = 0

> decompile <@ ``hello world`` @>;;
val it : string = "hello world"

> let ``goodbye world`` x = x;;

val ( goodbye world ) : 'a -> 'a

> decompile <@ ``goodbye world`` 0 @>;;
val it : string = "goodbye world 0"

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

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

Original comment by stephen....@gmail.com on 29 Apr 2012 at 3:01

GoogleCodeExporter commented 9 years ago

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