Types/AST/get_First.ps1

<#
.SYNOPSIS
    Gets the first nested AST
.DESCRIPTION
    Gets the first nested element of this AST
.EXAMPLE
    {
        do { } while ($false)
    }.First
#>

param()
$this.FirstElements(1)