Lines Matching refs:ParseWithError
305 std::string ParseWithError(StringRef Code) { in ParseWithError() function
321 ParseWithError("Foo 123")); in TEST()
325 ParseWithError("Foo(\"A\" 123)")); in TEST()
329 ParseWithError("stmt(someValue)")); in TEST()
333 ParseWithError("Foo(")); in TEST()
335 ParseWithError("")); in TEST()
341 ParseWithError("Foo((")); in TEST()
342 EXPECT_EQ("1:7: Expected end of code.", ParseWithError("expr()a")); in TEST()
344 ParseWithError("isArrow().biind")); in TEST()
346 ParseWithError("isArrow().bind")); in TEST()
348 ParseWithError("isArrow().bind(foo")); in TEST()
350 ParseWithError("isArrow().bind(\"foo\"")); in TEST()
353 ParseWithError("isArrow().bind(\"foo\")")); in TEST()
356 ParseWithError("isArrow().with")); in TEST()
359 ParseWithError("mapAnyOf(ifStmt).with")); in TEST()
362 ParseWithError("mapAnyOf(ifStmt).with(")); in TEST()
364 ParseWithError("mapAnyOf()")); in TEST()
367 ParseWithError("mapAnyOf(\"foo\")")); in TEST()
411 ParseWithError("callee(\"A\")")); in TEST()