mirror of
https://github.com/Smaug123/WoofWare.Myriad
synced 2025-10-06 04:28:42 +00:00
23 lines
688 B
Forth
23 lines
688 B
Forth
namespace WoofWare.Myriad.Plugins
|
|
|
|
open Fantomas.FCS.Syntax
|
|
open Fantomas.FCS.Text.Range
|
|
open Myriad.Core
|
|
|
|
[<RequireQualifiedAccess>]
|
|
module internal SynAttribute =
|
|
let internal compilationRepresentation : SynAttribute =
|
|
{
|
|
TypeName = SynLongIdent.CreateString "CompilationRepresentation"
|
|
ArgExpr =
|
|
SynExpr.CreateLongIdent (
|
|
false,
|
|
SynLongIdent.Create [ "CompilationRepresentationFlags" ; "ModuleSuffix" ],
|
|
None
|
|
)
|
|
|> SynExpr.CreateParen
|
|
Target = None
|
|
AppliesToGetterAndSetter = false
|
|
Range = range0
|
|
}
|