mirror of
https://github.com/Smaug123/WoofWare.Myriad
synced 2025-10-05 12:08:46 +00:00
11 lines
290 B
Forth
11 lines
290 B
Forth
namespace WoofWare.Myriad.Plugins
|
|
|
|
open Fantomas.FCS.Syntax
|
|
|
|
[<RequireQualifiedAccess>]
|
|
module internal SynIdent =
|
|
let inline createI (i : Ident) : SynIdent = SynIdent.SynIdent (i, None)
|
|
|
|
let inline createS (i : string) : SynIdent =
|
|
SynIdent.SynIdent (Ident.create i, None)
|