From 39f4f8cf57d491aa4af07b13f643198974795027 Mon Sep 17 00:00:00 2001 From: Romain Degrave Date: Fri, 9 Feb 2024 11:11:21 +0100 Subject: [PATCH] adding "!unary" operator to the operators precedence dictionary --- src/FAST-Core-Visitor/FASTTExporter.trait.st | 1 + 1 file changed, 1 insertion(+) diff --git a/src/FAST-Core-Visitor/FASTTExporter.trait.st b/src/FAST-Core-Visitor/FASTTExporter.trait.st index 8f0ee9b..56e0ce8 100644 --- a/src/FAST-Core-Visitor/FASTTExporter.trait.st +++ b/src/FAST-Core-Visitor/FASTTExporter.trait.st @@ -52,6 +52,7 @@ FASTTExporter >> defaultOperatorsPrecedence [ #'-unary' -> 110 . #'!' -> 110 . + #'!unary' -> 110. #not -> 110 . "cast"