minor cleanups
This commit is contained in:
@@ -1,7 +1,9 @@
|
|||||||
p = (false);
|
p = (false);
|
||||||
|
|
||||||
if p:
|
if p:
|
||||||
|
{
|
||||||
a = 1;
|
a = 1;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
a = 2;
|
a = 2;
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
|
||||||
|
if false:
|
||||||
|
a = 33;
|
||||||
|
|
||||||
|
print(a, '\n');
|
||||||
@@ -375,9 +375,6 @@ static inline _Bool done(Context *ctx)
|
|||||||
return current(ctx) == TDONE;
|
return current(ctx) == TDONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
#warning "TEMP"
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
static Node *parse_statement(Context *ctx)
|
static Node *parse_statement(Context *ctx)
|
||||||
{
|
{
|
||||||
assert(ctx != NULL);
|
assert(ctx != NULL);
|
||||||
|
|||||||
@@ -22,8 +22,6 @@ typedef struct {
|
|||||||
const char *input, *output;
|
const char *input, *output;
|
||||||
} Options;
|
} Options;
|
||||||
|
|
||||||
_Bool debug_callback(Runtime *runtime, void *userp);
|
|
||||||
|
|
||||||
static int parse_args(Options *opts, int argc, char **argv, Error *error)
|
static int parse_args(Options *opts, int argc, char **argv, Error *error)
|
||||||
{
|
{
|
||||||
assert(argc >= 0);
|
assert(argc >= 0);
|
||||||
|
|||||||
Reference in New Issue
Block a user