]> Nishi Git Mirror - gwion.git/commitdiff
:art: Fix xxxfix
authorJérémie Astor <fennecdjay@gmail.com>
Tue, 15 Dec 2020 02:09:02 +0000 (03:09 +0100)
committerJérémie Astor <fennecdjay@gmail.com>
Tue, 15 Dec 2020 02:09:02 +0000 (03:09 +0100)
ast
src/parse/scan1.c
tests/xxxfix/post_func.gw
tests/xxxfix/unary_func.gw

diff --git a/ast b/ast
index d7a7343d85e41a651a8cfdda17f530ca9876c9b4..607704e19a25cd9985506c75fe600d2a4213aba1 160000 (submodule)
--- a/ast
+++ b/ast
@@ -1 +1 @@
-Subproject commit d7a7343d85e41a651a8cfdda17f530ca9876c9b4
+Subproject commit 607704e19a25cd9985506c75fe600d2a4213aba1
index f6a0734b4af6f566c00eed16e8a9931535088fdf..d00d7064f28e408751286b3dc09e55760db4c5af 100644 (file)
@@ -149,7 +149,7 @@ ANN m_bool scan1_exp_decl(const Env env, const Exp_Decl* decl) {
 
 ANN static inline int opiscall(const Symbol sym) {
   const m_str opname = s_name(sym);
-  return (opname[0] == '@' || opname[0] == '$') &&
+  return (opname[0] == '@' || opname[0] == '&') &&
     (isalpha(opname[1]) || opname[1] == '_');
 }
 
index 9c2b2d297bf492836c8d95525f9ecc8a0e26642e..c64ff069d8ddd11155c122201cf11031e8298b6d 100644 (file)
@@ -2,4 +2,4 @@ fun int add(int i) {
   return i + 3;
 }
 
-<<< 2 .add>>>;
+<<< 2 &add>>>;
index b82dc14a7f5405347edde58e90124be5d85f1d78..51c9081e4428f0ea4d3473d7d9e04845e3c69e65 100644 (file)
@@ -2,4 +2,4 @@ fun int add(int i) {
   return i + 3;
 }
 
-<<< ($add) 2 >>>;
+<<< (&add) 2 >>>;