Home | History | Annotate | Download | only in compiler

Lines Matching defs:binaryOp

1177     def binaryOp(self, node, op):
1183 return self.binaryOp(node, 'BINARY_ADD')
1186 return self.binaryOp(node, 'BINARY_SUBTRACT')
1189 return self.binaryOp(node, 'BINARY_MULTIPLY')
1192 return self.binaryOp(node, self._div_op)
1195 return self.binaryOp(node, 'BINARY_FLOOR_DIVIDE')
1198 return self.binaryOp(node, 'BINARY_MODULO')
1201 return self.binaryOp(node, 'BINARY_POWER')
1204 return self.binaryOp(node, 'BINARY_LSHIFT')
1207 return self.binaryOp(node, 'BINARY_RSHIFT')