Enable nullable: System.Management.Automation.Interpreter.IBoxableInstruction (#14165)

This commit is contained in:
Staffan Gustafsson 2020-12-11 07:45:11 +01:00 committed by GitHub
parent 7944cf0873
commit c4cc62658a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,10 +23,13 @@ using System.Collections.Generic;
namespace System.Management.Automation.Interpreter
{
#nullable enable
internal interface IBoxableInstruction
{
Instruction BoxIfIndexMatches(int index);
Instruction? BoxIfIndexMatches(int index);
}
#nullable restore
internal abstract class LocalAccessInstruction : Instruction
{