Refine Add/AddAssign for AST and Module.

This commit is contained in:
Stephen Chung 2020-10-07 23:25:08 +08:00
parent d35c216465
commit b2d603ec06
2 changed files with 17 additions and 32 deletions

View File

@ -1546,35 +1546,28 @@ impl From<StaticVec<(String, Position)>> for ModuleRef {
}
}
impl Add<Module> for Module {
type Output = Self;
impl<M: AsRef<Module>> Add<M> for &Module {
type Output = Module;
fn add(self, rhs: Module) -> Self::Output {
fn add(self, rhs: M) -> Self::Output {
let mut module = self.clone();
module.merge(&rhs);
module.merge(rhs.as_ref());
module
}
}
impl Add<&Module> for Module {
impl<M: AsRef<Module>> Add<M> for Module {
type Output = Self;
fn add(self, rhs: &Module) -> Self::Output {
let mut module = self.clone();
module.merge(rhs);
module
fn add(mut self, rhs: M) -> Self::Output {
self.merge(rhs.as_ref());
self
}
}
impl AddAssign<Module> for Module {
fn add_assign(&mut self, rhs: Module) {
self.combine(rhs);
}
}
impl AddAssign<&Module> for Module {
fn add_assign(&mut self, rhs: &Module) {
self.merge(rhs);
impl<M: Into<Module>> AddAssign<M> for Module {
fn add_assign(&mut self, rhs: M) {
self.combine(rhs.into());
}
}

View File

@ -443,25 +443,17 @@ impl AST {
}
}
impl Add<Self> for &AST {
impl<A: AsRef<AST>> Add<A> for &AST {
type Output = AST;
fn add(self, rhs: Self) -> Self::Output {
self.merge(rhs)
fn add(self, rhs: A) -> Self::Output {
self.merge(rhs.as_ref())
}
}
impl Add<&Self> for &AST {
type Output = AST;
fn add(self, rhs: &Self) -> Self::Output {
self.merge(rhs)
}
}
impl AddAssign<AST> for AST {
fn add_assign(&mut self, rhs: AST) {
self.combine(rhs);
impl<A: Into<AST>> AddAssign<A> for AST {
fn add_assign(&mut self, rhs: A) {
self.combine(rhs.into());
}
}