Move corpus files to fixtures/corpus directory

This commit is contained in:
Max Brunsfeld 2015-09-02 17:04:04 -07:00
parent bc0e290c17
commit eb8ef59869
16 changed files with 1 additions and 1 deletions

View file

@ -1,30 +0,0 @@
==========================================
errors in function calls
==========================================
stuff(|||);
---
(program
(expression_statement (function_call (identifier) (arguments (ERROR (UNEXPECTED '|'))))))
==========================================
errors in if statements
==========================================
stuff();
if (*nonsense*) {
*more-nonsense*;
}
moreStuff();
---
(program
(expression_statement (function_call (identifier) (arguments)))
(if_statement
(ERROR (UNEXPECTED '*') (identifier))
(statement_block
(expression_statement (ERROR (UNEXPECTED '*') (identifier) (identifier)))))
(expression_statement (function_call (identifier) (arguments))))