Add required explicit interface implementations

This commit is contained in:
Sam Harwell 2013-02-19 11:23:06 -06:00
parent a24f65af41
commit f45c70fcd5
1 changed files with 25 additions and 0 deletions

View File

@ -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);
}
}
}