2021-01-04 15:00:48 -05:00
|
|
|
#ifndef COMPILER_STATEMENTS_H
|
|
|
|
#define COMPILER_STATEMENTS_H
|
|
|
|
#include "compiler.h"
|
|
|
|
|
|
|
|
/* compiler-statements
|
|
|
|
* Single function for compiling statements */
|
|
|
|
|
|
|
|
LINEBLOCK* compilestatements(SCOPE* s, STATEMENT* sts);
|
2021-01-07 17:58:28 -05:00
|
|
|
LINEBLOCK* compilestatementsretlast(SCOPE* s, STATEMENT* sts, STATEMENT** retlast);
|
2021-01-04 15:00:48 -05:00
|
|
|
#endif
|