示例#1
0
 def lhs(self, lhs):
     if lhs is None:
         self._lhs = None
     else:
         self._lhs = lex.maybe_extract_id(self, lhs)
示例#2
0
 def rhs(self, rhs):
     if rhs is None:
         self._rhs = rhs
     else:
         self._rhs = lex.maybe_extract_id(self, rhs)