File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ internal class SpecialVars
28
28
internal const string Matches = "Matches" ;
29
29
internal const string PSVersionTable = "PSVersionTable" ;
30
30
internal const string OFS = "OFS" ;
31
+ internal const string FormatEnumerationLimit = "FormatEnumerationLimit" ;
31
32
32
33
internal static readonly string [ ] InitializedVariables ;
33
34
@@ -59,8 +60,9 @@ static SpecialVars()
59
60
PSCommandPath ,
60
61
ExecutionContext ,
61
62
Matches ,
62
- PSVersionTable ,
63
- OFS
63
+ PSVersionTable ,
64
+ OFS ,
65
+ FormatEnumerationLimit ,
64
66
} ;
65
67
internal static readonly Type [ ] AutomaticVariableTypes = new Type [ ]
66
68
{
@@ -76,7 +78,8 @@ static SpecialVars()
76
78
/* ExecutionContext */ typeof ( EngineIntrinsics ) ,
77
79
/* Matches */ typeof ( System . Collections . Hashtable ) ,
78
80
/* PSVersionTable */ typeof ( System . Collections . Hashtable ) ,
79
- /* OFS */ typeof ( object )
81
+ /* OFS */ typeof ( object ) ,
82
+ /* FormatEnumerationLimit */ typeof ( int )
80
83
} ;
81
84
82
85
You can’t perform that action at this time.
0 commit comments