mirror of
https://github.com/Smaug123/WoofWare.Myriad
synced 2025-10-05 20:18:43 +00:00
16 lines
359 B
Forth
16 lines
359 B
Forth
namespace WoofWare.Myriad.Plugins
|
|
|
|
open Fantomas.FCS.Syntax
|
|
open Fantomas.FCS.Text.Range
|
|
|
|
[<RequireQualifiedAccess>]
|
|
module internal SynAttributes =
|
|
let ofAttrs (attrs : SynAttribute list) : SynAttributes =
|
|
attrs
|
|
|> List.map (fun a ->
|
|
{
|
|
Attributes = [ a ]
|
|
Range = range0
|
|
}
|
|
)
|