2014-04-24 13:22:54 -07:00
|
|
|
==========================================
|
2014-10-19 12:36:43 -07:00
|
|
|
errors in function calls
|
2014-04-24 13:22:54 -07:00
|
|
|
==========================================
|
2014-10-19 12:36:43 -07:00
|
|
|
|
2014-04-24 13:22:54 -07:00
|
|
|
stuff(|||);
|
2014-10-19 12:36:43 -07:00
|
|
|
|
2014-04-24 13:22:54 -07:00
|
|
|
---
|
2014-10-19 12:36:43 -07:00
|
|
|
|
2015-06-15 15:24:15 -07:00
|
|
|
(expression_statement (function_call (identifier) (ERROR (UNEXPECTED '|'))))
|
2014-04-24 13:22:54 -07:00
|
|
|
|
2014-03-26 23:02:57 -07:00
|
|
|
==========================================
|
2014-10-19 12:36:43 -07:00
|
|
|
errors in if statements
|
2014-03-26 23:02:57 -07:00
|
|
|
==========================================
|
2014-10-19 12:36:43 -07:00
|
|
|
|
2014-03-26 23:02:57 -07:00
|
|
|
stuff();
|
|
|
|
|
if (*nonsense*) {
|
|
|
|
|
*more-nonsense*;
|
|
|
|
|
}
|
|
|
|
|
moreStuff();
|
2014-10-19 12:36:43 -07:00
|
|
|
|
2014-03-26 23:02:57 -07:00
|
|
|
---
|
2014-10-19 12:36:43 -07:00
|
|
|
|
2014-03-26 23:02:57 -07:00
|
|
|
(program
|
2015-06-15 15:24:15 -07:00
|
|
|
(expression_statement (function_call (identifier)))
|
|
|
|
|
(if_statement
|
|
|
|
|
(ERROR (UNEXPECTED '*') (identifier))
|
|
|
|
|
(statement_block
|
|
|
|
|
(expression_statement (ERROR (UNEXPECTED '*') (identifier) (identifier)))))
|
|
|
|
|
(expression_statement (function_call (identifier))))
|