Operators SHL, SAR, Exp and Not can be bound as a user type operators

This commit is contained in:
wechman
2022-09-28 13:08:32 +02:00
parent 27249cfa52
commit 59c8ec0e65
4 changed files with 32 additions and 18 deletions
+1 -1
View File
@@ -314,7 +314,7 @@ errorDefinition:
/**
* User type operators.
*/
userOp: Add | Sub | Mul | Div | Mod | BitAnd | BitOr | BitXor | BitNot | Equal | NotEqual | LessThan | GreaterThan | LessThanOrEqual | GreaterThanOrEqual;
userOp: Add | Sub | Mul | Div | Mod | BitAnd | BitOr | BitXor | BitNot | Equal | NotEqual | LessThan | GreaterThan | LessThanOrEqual | GreaterThanOrEqual | Shl | Sar | Exp | Not;
/**
* Using directive to bind library functions and free functions to types.