Skip to content

Commit

Permalink
RakuAST: rename OperatorProperties.loose-or-xor to loose-xor
Browse files Browse the repository at this point in the history
For naming consistency
  • Loading branch information
lizmat committed Aug 23, 2023
1 parent ba9f405 commit 1380fa3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Raku/ast/operator-properties.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ class BuiltinOperatorTypes {
:precedence<c=>, :associative<left>, :dba('loose or'), :thunky<.t>,
:iffy
}
method loose-or-xor() {
method loose-xor() {
OperatorProperties.new:
:precedence<c=>, :associative<list>, :dba('loose or'), :thunky<.t>,
:iffy
Expand Down Expand Up @@ -447,7 +447,7 @@ class BuiltinOperatorTypes {
'loose-and', '',
'loose-andthen', '',
'loose-or', '',
'loose-or-xor', '',
'loose-xor', '',
'loose-orelse', '',
'sequencer', '',
);
Expand Down Expand Up @@ -648,7 +648,7 @@ class BuiltinOperatorProperties {

'or', 'loose-or',

'xor', 'loose-or-xor',
'xor', 'loose-xor',

'orelse', 'loose-orelse',
);
Expand Down

0 comments on commit 1380fa3

Please sign in to comment.