Symmetric coroutines!

This commit is contained in:
Bob Nystrom
2014-04-14 07:23:05 -07:00
parent cd75e17f0d
commit f03895b17e
31 changed files with 276 additions and 63 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ EXPECT_ERROR_PATTERN = re.compile(r'// expect error')
EXPECT_ERROR_LINE_PATTERN = re.compile(r'// expect error line (\d+)')
EXPECT_RUNTIME_ERROR_PATTERN = re.compile(r'// expect runtime error: (.+)')
ERROR_PATTERN = re.compile(r'\[.* line (\d+)\] Error')
STACK_TRACE_PATTERN = re.compile(r'\[.* line (\d+)\] in \(script\)')
STACK_TRACE_PATTERN = re.compile(r'\[.* line (\d+)\] in')
SKIP_PATTERN = re.compile(r'// skip: (.*)')
NONTEST_PATTERN = re.compile(r'// nontest')