We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6645c7d commit 62eab65Copy full SHA for 62eab65
PipeScript.types.ps1xml
@@ -614,8 +614,8 @@ foreach ($potentialCommand in $potentialCommands) {
614
}
615
elseif ($currentParameter) {
616
if ($mappedParameters.Contains($currentParameter) -and
617
- $currentParameter.ParameterType -isnot [Collections.IList] -and
618
- $currentParameter.ParameterType -isnot [PSObject]
+ $currentParameterMetadata.ParameterType -ne [Collections.IList] -and
+ $currentParameterMetadata.ParameterType -ne [PSObject]
619
) {
620
$clauses += [PSCustomObject][Ordered]@{
621
PSTypeName = 'PipeScript.Sentence.Clause'
0 commit comments