forked from jasder/antlr
Add required explicit interface implementations
This commit is contained in:
parent
a24f65af41
commit
f45c70fcd5
|
@ -817,5 +817,30 @@ namespace Antlr4.Runtime.Misc
|
|||
{
|
||||
this.@readonly = @readonly;
|
||||
}
|
||||
|
||||
IIntSet IIntSet.AddAll(IIntSet set)
|
||||
{
|
||||
return AddAll(set);
|
||||
}
|
||||
|
||||
IIntSet IIntSet.And(IIntSet a)
|
||||
{
|
||||
return And(a);
|
||||
}
|
||||
|
||||
IIntSet IIntSet.Complement(IIntSet elements)
|
||||
{
|
||||
return Complement(elements);
|
||||
}
|
||||
|
||||
IIntSet IIntSet.Or(IIntSet a)
|
||||
{
|
||||
return Or(a);
|
||||
}
|
||||
|
||||
IIntSet IIntSet.Subtract(IIntSet a)
|
||||
{
|
||||
return Subtract(a);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue