Jooseppi12
Jooseppi12
Starting from any of the templates, adding the following to the code: ``` [] let testError = X ``` yields an error (as the inline JS is not valid), but...
Given the following code: ```fsharp type type' = static member myFunction'
Consider the following code: ```fsharp [] let myFunction (str: string) = X ``` The above would describe a function in F# that would be translated to a call `myFunction` from...
Expose the functionality as a standard function that was added in #1347
```fsharp [] type X = abstract Y: int -> int abstract Z: string -> string ``` This combined with #1383 allows us to add more metaprogramming capability
It is already part of the Elt module, it's missing it's Doc variant.
Given the following F# code: ```fsharp [] type Position = { pos_fname: string pos_lnum: int pos_orig_lnum: int pos_bol: int pos_cnum: int } member pos.FileName = pos.pos_fname member pos.Line = pos.pos_lnum...