File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments