コード例 #1
0
ファイル: unary_constraint.py プロジェクト: Tedworthy/ATLAST
 def __init__(self,op,child):
   IRNode.__init__(self)
   self._op = op
   self._child = child
コード例 #2
0
ファイル: binop_constraint.py プロジェクト: Tedworthy/ATLAST
 def __init__(self, left, right):
   IRNode.__init__(self)
   self._left = left
   self._right = right