]> Nishi Git Mirror - gwion.git/commitdiff
:art: More cpy_ast
authorfennecdjay <astor.jeremie@wanadoo.fr>
Fri, 11 Oct 2019 00:32:29 +0000 (02:32 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Fri, 11 Oct 2019 00:32:29 +0000 (02:32 +0200)
tests/tree/cpy_ast.gw

index d9aa414d97e59223606771def7f67726316659a9..a079bad4036481cccb0d03ecdba0618a0071f2be 100644 (file)
@@ -14,12 +14,19 @@ class <~A~>C {
   if(i) i; else i;
   for(int; i < 1; ++i);
   int array[2];
+  array[0];
   for(auto a : array);
   repeat(1);
-  match i { case _:; }
+  match i,2 {
+    case 12 when 0:;
+    case _,2 when 0:;
+  } where int i;
   enum { zero };
   typedef int Int;
   goto end;
+  new Object;
+  spork { <<< __func__ >>>; };
   end:
+  while(0){ <<< __func__ >>>; }
 }
 <~int~>C c;