Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Label implements IEquatable<Label> #35673

Merged
merged 5 commits into from
Apr 6, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Move Label IEquatable declaration to ILGeneration.netcore
  • Loading branch information
foxtrek64 committed Apr 2, 2019
commit e6b86dc528f018d7b20e2807413a27ffa6571200
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public virtual void MarkLabel(System.Reflection.Emit.Label loc) { }
public virtual void ThrowException(System.Type excType) { }
public virtual void UsingNamespace(string usingNamespace) { }
}
public partial struct Label : IEquatable<System.Reflection.Emit.Label>
public partial struct Label
{
private int _dummyPrimitive;
public override bool Equals(object obj) { throw null; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,7 @@ public partial class ILGenerator
{
public virtual void EmitCalli(System.Reflection.Emit.OpCode opcode, System.Runtime.InteropServices.CallingConvention unmanagedCallConv, Type returnType, Type[] parameterTypes) { }
}

public partial struct Label : IEquatable<System.Reflection.Emit.Label>
{ }
}