@@ -2667,7 +2667,7 @@ foreach ($prop in $this.psobject.properties) {
2667
2667
#>
2668
2668
,@(foreach ($psProperty in $this.PSObject.properties) {
2669
2669
if ($psProperty -isnot [psnoteproperty]) { continue }
2670
- if ($prop .IsInstance -and $prop .Value.LanguageName) {
2670
+ if ($psProperty .IsInstance -and $psProperty .Value.LanguageName) {
2671
2671
$psProperty.Value
2672
2672
}
2673
2673
})
@@ -2681,7 +2681,7 @@ foreach ($prop in $this.psobject.properties) {
2681
2681
#>
2682
2682
,@(foreach ($psProperty in $this.PSObject.properties) {
2683
2683
if ($psProperty -isnot [psnoteproperty]) { continue }
2684
- if ($prop .IsInstance -and $prop .Value.LanguageName) {
2684
+ if ($psProperty .IsInstance -and $psProperty .Value.LanguageName) {
2685
2685
$psProperty.Value
2686
2686
}
2687
2687
})
@@ -2853,7 +2853,7 @@ foreach ($prop in $this.psobject.properties) {
2853
2853
#>
2854
2854
,@(foreach ($psProperty in $this.PSObject.properties) {
2855
2855
if ($psProperty -isnot [psnoteproperty]) { continue }
2856
- if ($prop .IsInstance -and $prop .Value.LanguageName) {
2856
+ if ($psProperty .IsInstance -and $psProperty .Value.LanguageName) {
2857
2857
$psProperty.Value
2858
2858
}
2859
2859
})
@@ -2906,7 +2906,7 @@ return $count
2906
2906
2907
2907
A Language is defined a function named Language.NameOfLanguage.
2908
2908
2909
- PipeScript presently ships with 62 languages:
2909
+ PipeScript presently ships with 63 languages:
2910
2910
2911
2911
* ADA
2912
2912
* Arduino
@@ -2916,6 +2916,7 @@ PipeScript presently ships with 62 languages:
2916
2916
* Batch
2917
2917
* Bicep
2918
2918
* BrightScript
2919
+ * Conf
2919
2920
* CPlusPlus
2920
2921
* CSharp
2921
2922
* CSS
0 commit comments