diff --git a/src/org/rascalmpl/library/lang/rascal/tests/concrete/Syntax3.rsc b/src/org/rascalmpl/library/lang/rascal/tests/concrete/Syntax3.rsc index 9900a41744b..7a51d029e6c 100644 --- a/src/org/rascalmpl/library/lang/rascal/tests/concrete/Syntax3.rsc +++ b/src/org/rascalmpl/library/lang/rascal/tests/concrete/Syntax3.rsc @@ -18,15 +18,6 @@ Aas ambFilter(amb(set[Aas] alternatives)) { return ParseTree::amb(result); } -@IgnoreCompiler{ -TODO: these tests can only be made to work when the compiled parser generator is integrated -and compiled Rascal functions can be called during parse tree construction -} test bool resolveableAmbIsGone() = amb(_) !:= parse(#Aas, "a", allowAmbiguity=true, filters={ambFilter}); -// this test would throw an exception because the amb constructor would not _statically_ return -// a tree of type Aas: -@IgnoreCompiler{ -TODO: Not implemented -} test bool twoAmbsLeft() = amb({_,_}) := parse(#Aas, "aa", allowAmbiguity=true, filters={ambFilter});