Skip to content

Commit

Permalink
Add missing Expr>>#<=
Browse files Browse the repository at this point in the history
  • Loading branch information
shingarov committed Oct 20, 2024
1 parent e882b8f commit 6ff51e9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/Refinements/Expr.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,13 @@ Expr >> <+ rhs [
sort: Bool sort
]

{ #category : #'theory symbols' }
Expr >> <= rhs [
^ECst
expr: (EMessageSend of: (MessageSend receiver: self selector: #<= argument: rhs))
sort: Bool sort
]

{ #category : #'theory symbols' }
Expr >> <=> rhs [
^ECst
Expand Down

0 comments on commit 6ff51e9

Please sign in to comment.