mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Operators SHL, SAR, Exp and Not can be bound as a user type operators
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user