Skip to content
Snippets Groups Projects
Commit 93d31273 authored by Frederik Hennig's avatar Frederik Hennig
Browse files

cleanup in expressions module

parent 2ab005a3
No related branches found
No related tags found
1 merge request!375Support for Boolean Operations and Relations
Pipeline #64920 passed
...@@ -388,20 +388,14 @@ class PsCall(PsExpression): ...@@ -388,20 +388,14 @@ class PsCall(PsExpression):
class PsNumericOpTrait: class PsNumericOpTrait:
"""Trait for operations valid only on numerical types""" """Trait for operations valid only on numerical types"""
pass
class PsIntOpTrait: class PsIntOpTrait:
"""Trait for operations valid only on integer types""" """Trait for operations valid only on integer types"""
pass
class PsBoolOpTrait: class PsBoolOpTrait:
"""Trait for boolean operations""" """Trait for boolean operations"""
pass
class PsUnOp(PsExpression): class PsUnOp(PsExpression):
__match_args__ = ("operand",) __match_args__ = ("operand",)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment