First line of following file is not correctly highlighted/scoped as annotation.
[CmdletBinding(PositionalBinding=$false)]
param(
[Parameter(Mandatory=$true)]
[string]$base,
[Parameter(Mandatory=$true)]
[string]$head
)
Set-StrictMode -version 2.0
$ErrorActionPreference="Stop"

First line of following file is not correctly highlighted/scoped as annotation.