Skip to content

Commit 1f5edb7

Browse files
committed
Enable nullable: System.Management.Automation.Interpreter.IInstructionProvider
1 parent 6dcc507 commit 1f5edb7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/System.Management.Automation/engine/interpreter/Instruction.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,15 @@
1717

1818
namespace System.Management.Automation.Interpreter
1919
{
20+
#nullable enable
21+
2022
internal interface IInstructionProvider
2123
{
2224
void AddInstructions(LightCompiler compiler);
2325
}
2426

27+
#nullable restore
28+
2529
internal abstract class Instruction
2630
{
2731
public const int UnknownInstrIndex = int.MaxValue;

0 commit comments

Comments
 (0)