def lhs(self, lhs): if lhs is None: self._lhs = None else: self._lhs = lex.maybe_extract_id(self, lhs)
def rhs(self, rhs): if rhs is None: self._rhs = rhs else: self._rhs = lex.maybe_extract_id(self, rhs)