Skip to content

Commit 0f53be3

Browse files
StartAutomatingStartAutomating
authored andcommitted
feat: Conf Language Definition ( Fixes #864 )
1 parent a27ca52 commit 0f53be3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

PipeScript.types.ps1xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2667,7 +2667,7 @@ foreach ($prop in $this.psobject.properties) {
26672667
#>
26682668
,@(foreach ($psProperty in $this.PSObject.properties) {
26692669
if ($psProperty -isnot [psnoteproperty]) { continue }
2670-
if ($prop.IsInstance -and $prop.Value.LanguageName) {
2670+
if ($psProperty.IsInstance -and $psProperty.Value.LanguageName) {
26712671
$psProperty.Value
26722672
}
26732673
})
@@ -2681,7 +2681,7 @@ foreach ($prop in $this.psobject.properties) {
26812681
#>
26822682
,@(foreach ($psProperty in $this.PSObject.properties) {
26832683
if ($psProperty -isnot [psnoteproperty]) { continue }
2684-
if ($prop.IsInstance -and $prop.Value.LanguageName) {
2684+
if ($psProperty.IsInstance -and $psProperty.Value.LanguageName) {
26852685
$psProperty.Value
26862686
}
26872687
})
@@ -2853,7 +2853,7 @@ foreach ($prop in $this.psobject.properties) {
28532853
#>
28542854
,@(foreach ($psProperty in $this.PSObject.properties) {
28552855
if ($psProperty -isnot [psnoteproperty]) { continue }
2856-
if ($prop.IsInstance -and $prop.Value.LanguageName) {
2856+
if ($psProperty.IsInstance -and $psProperty.Value.LanguageName) {
28572857
$psProperty.Value
28582858
}
28592859
})
@@ -2906,7 +2906,7 @@ return $count
29062906

29072907
A Language is defined a function named Language.NameOfLanguage.
29082908

2909-
PipeScript presently ships with 62 languages:
2909+
PipeScript presently ships with 63 languages:
29102910

29112911
* ADA
29122912
* Arduino
@@ -2916,6 +2916,7 @@ PipeScript presently ships with 62 languages:
29162916
* Batch
29172917
* Bicep
29182918
* BrightScript
2919+
* Conf
29192920
* CPlusPlus
29202921
* CSharp
29212922
* CSS

0 commit comments

Comments
 (0)