コード例 #1
0
ファイル: ast.py プロジェクト: andreimatei/hydra-run-time
 def lhs(self, lhs):
     if lhs is None:
         self._lhs = None
     else:
         self._lhs = lex.maybe_extract_id(self, lhs)
コード例 #2
0
ファイル: ast.py プロジェクト: andreimatei/hydra-run-time
 def rhs(self, rhs):
     if rhs is None:
         self._rhs = rhs
     else:
         self._rhs = lex.maybe_extract_id(self, rhs)