Components/PS.Util.AST/Public/Get-PSUtilASTTypeNameList.ps1

function Get-PSUtilASTTypeNameList {
    [CmdletBinding()]
    Param()

    PROCESS {

        [PSObject].Assembly.GetTypes().Where{$_.Name.EndsWith('Ast')}.Name | Sort-Object

    }

}