Skip to content

Commit da2c918

Browse files
authored
Update SpecialVars.cs (#1836)
1 parent 53be991 commit da2c918

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Engine/SpecialVars.cs

+6-3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ internal class SpecialVars
2828
internal const string Matches = "Matches";
2929
internal const string PSVersionTable = "PSVersionTable";
3030
internal const string OFS = "OFS";
31+
internal const string FormatEnumerationLimit = "FormatEnumerationLimit";
3132

3233
internal static readonly string[] InitializedVariables;
3334

@@ -59,8 +60,9 @@ static SpecialVars()
5960
PSCommandPath,
6061
ExecutionContext,
6162
Matches,
62-
PSVersionTable,
63-
OFS
63+
PSVersionTable,
64+
OFS,
65+
FormatEnumerationLimit,
6466
};
6567
internal static readonly Type[] AutomaticVariableTypes = new Type[]
6668
{
@@ -76,7 +78,8 @@ static SpecialVars()
7678
/* ExecutionContext */ typeof(EngineIntrinsics),
7779
/* Matches */ typeof(System.Collections.Hashtable),
7880
/* PSVersionTable */ typeof(System.Collections.Hashtable),
79-
/* OFS */ typeof(object)
81+
/* OFS */ typeof(object),
82+
/* FormatEnumerationLimit */ typeof(int)
8083
};
8184

8285

0 commit comments

Comments
 (0)