mirror of
https://github.com/Smaug123/WoofWare.Myriad
synced 2025-10-05 03:58:40 +00:00
11 lines
270 B
Forth
11 lines
270 B
Forth
namespace WoofWare.Myriad.Plugins
|
|
|
|
open Fantomas.FCS.Syntax
|
|
|
|
[<RequireQualifiedAccess>]
|
|
module internal SynType =
|
|
let rec stripOptionalParen (ty : SynType) : SynType =
|
|
match ty with
|
|
| SynType.Paren (ty, _) -> stripOptionalParen ty
|
|
| ty -> ty
|