C#: Sync identical files

This commit is contained in:
Mathias Vorreiter Pedersen
2020-01-28 17:52:45 +01:00
parent c1091a03d0
commit 67d29e31cc
2 changed files with 8 additions and 0 deletions

View File

@@ -947,6 +947,10 @@ class ConvertInstruction extends UnaryInstruction {
ConvertInstruction() { getOpcode() instanceof Opcode::Convert } ConvertInstruction() { getOpcode() instanceof Opcode::Convert }
} }
class CheckedConvertOrNullInstruction extends UnaryInstruction {
CheckedConvertOrNullInstruction() { getOpcode() instanceof Opcode::CheckedConvertOrNull }
}
/** /**
* Represents an instruction that converts between two addresses * Represents an instruction that converts between two addresses
* related by inheritance. * related by inheritance.

View File

@@ -947,6 +947,10 @@ class ConvertInstruction extends UnaryInstruction {
ConvertInstruction() { getOpcode() instanceof Opcode::Convert } ConvertInstruction() { getOpcode() instanceof Opcode::Convert }
} }
class CheckedConvertOrNullInstruction extends UnaryInstruction {
CheckedConvertOrNullInstruction() { getOpcode() instanceof Opcode::CheckedConvertOrNull }
}
/** /**
* Represents an instruction that converts between two addresses * Represents an instruction that converts between two addresses
* related by inheritance. * related by inheritance.