forked from jasder/antlr
Suppress warning about overriding Equals but not GetHashCode
This commit is contained in:
parent
eaa92eb826
commit
81b256d1f3
|
@ -35,6 +35,7 @@ using Sharpen;
|
|||
|
||||
namespace Antlr4.Runtime.Atn
|
||||
{
|
||||
#pragma warning disable 0659 // 'class' overrides Object.Equals(object o) but does not override Object.GetHashCode()
|
||||
public class ArrayPredictionContext : PredictionContext
|
||||
{
|
||||
[NotNull]
|
||||
|
|
|
@ -34,6 +34,7 @@ using Sharpen;
|
|||
|
||||
namespace Antlr4.Runtime.Atn
|
||||
{
|
||||
#pragma warning disable 0659 // 'class' overrides Object.Equals(object o) but does not override Object.GetHashCode()
|
||||
public sealed class EmptyPredictionContext : PredictionContext
|
||||
{
|
||||
public static readonly Antlr4.Runtime.Atn.EmptyPredictionContext LocalContext = new
|
||||
|
|
|
@ -33,6 +33,7 @@ using Sharpen;
|
|||
|
||||
namespace Antlr4.Runtime.Atn
|
||||
{
|
||||
#pragma warning disable 0659 // 'class' overrides Object.Equals(object o) but does not override Object.GetHashCode()
|
||||
public class SingletonPredictionContext : PredictionContext
|
||||
{
|
||||
[NotNull]
|
||||
|
|
Loading…
Reference in New Issue