File blocks.c changed (mode: 100644) (index dddab78..176e50b) |
1 |
1 |
#include <stdint.h> |
#include <stdint.h> |
2 |
2 |
#include <stdio.h> |
#include <stdio.h> |
|
3 |
|
#include <stdlib.h> |
3 |
4 |
|
|
4 |
5 |
#include "blocks.h" |
#include "blocks.h" |
5 |
6 |
#include "misc.h" |
#include "misc.h" |
6 |
7 |
|
|
7 |
8 |
|
|
8 |
|
static struct block_start { |
|
|
9 |
|
struct block_start { |
9 |
10 |
int lineno; |
int lineno; |
10 |
11 |
enum block_type type; |
enum block_type type; |
11 |
|
|
|
12 |
12 |
}; |
}; |
13 |
13 |
|
|
14 |
14 |
static struct block_start *blocks = NULL; |
static struct block_start *blocks = NULL; |
|
... |
... |
bool block_pop(enum block_type type, char *buf, size_t len){ |
52 |
52 |
} |
} |
53 |
53 |
|
|
54 |
54 |
|
|
55 |
|
void block_missing_error(int x, char *msg, size_t len){ |
|
|
55 |
|
void block_missing_error(char *msg, size_t len){ |
56 |
56 |
if(size == 0){ |
if(size == 0){ |
57 |
57 |
return; |
return; |
58 |
58 |
} |
} |
File blocks.h changed (mode: 100644) (index 3cfddca..7e06325) |
... |
... |
enum block_type { |
11 |
11 |
}; |
}; |
12 |
12 |
void block_push(int lineno, enum block_type type); |
void block_push(int lineno, enum block_type type); |
13 |
13 |
bool block_pop(enum block_type type, char *buf, size_t len); |
bool block_pop(enum block_type type, char *buf, size_t len); |
14 |
|
void block_missing_error(int x, char *msg, size_t len); |
|
|
14 |
|
void block_missing_error(char *msg, size_t len); |
15 |
15 |
|
|
16 |
16 |
#endif |
#endif |
File grammar.y changed (mode: 100644) (index 2c24e4f..eb6213e) |
... |
... |
funcdefncore: funcbegin localblock codeblock funcend { |
361 |
361 |
| funcbegin localblock codeblock { |
| funcbegin localblock codeblock { |
362 |
362 |
|
|
363 |
363 |
char msg[1024]; |
char msg[1024]; |
364 |
|
block_missing_error(2, msg, 1024); |
|
|
364 |
|
block_missing_error(msg, 1024); |
365 |
365 |
yyerrorex(syntaxerror, msg); |
yyerrorex(syntaxerror, msg); |
366 |
366 |
|
|
367 |
367 |
ht_clear(¶ms); |
ht_clear(¶ms); |
|
... |
... |
statement: newline { $$.ty = gEmpty; } |
478 |
478 |
$$.ty = $3.ty; |
$$.ty = $3.ty; |
479 |
479 |
|
|
480 |
480 |
char msg[1024]; |
char msg[1024]; |
481 |
|
block_missing_error(0, msg, 1024); |
|
|
481 |
|
block_missing_error(msg, 1024); |
482 |
482 |
yyerrorex(syntaxerror, msg); |
yyerrorex(syntaxerror, msg); |
483 |
483 |
|
|
484 |
484 |
} |
} |
485 |
|
| EXITWHEN expr newline { canconvert($2.ty, gBoolean, -1); if (!inloop) yyerrorline(syntaxerror, lineno - 1, "Exitwhen outside of loop"); $$.ty = gAny;} |
|
|
485 |
|
| EXITWHEN expr newline { |
|
486 |
|
canconvert($2.ty, gBoolean, -1); |
|
487 |
|
if (!inloop) |
|
488 |
|
yyerrorline(syntaxerror, lineno - 1, "Exitwhen outside of loop"); |
|
489 |
|
$$.ty = gAny; |
|
490 |
|
} |
486 |
491 |
| RETURN expr newline { |
| RETURN expr newline { |
487 |
492 |
$$.ty = mkretty($2.ty, 1); |
$$.ty = mkretty($2.ty, 1); |
488 |
493 |
if(retval == gNothing) |
if(retval == gNothing) |
|
... |
... |
statement: newline { $$.ty = gEmpty; } |
502 |
507 |
$$.ty = combinetype($5.ty, combinetype($6.ty, $7.ty)); |
$$.ty = combinetype($5.ty, combinetype($6.ty, $7.ty)); |
503 |
508 |
|
|
504 |
509 |
char msg[1024]; |
char msg[1024]; |
505 |
|
block_missing_error(1, msg, 1024); |
|
|
510 |
|
block_missing_error(msg, 1024); |
506 |
511 |
yyerrorex(syntaxerror, msg); |
yyerrorex(syntaxerror, msg); |
507 |
512 |
} |
} |
508 |
513 |
| ifstart expr newline { |
| ifstart expr newline { |
File misc.h changed (mode: 100644) (index 05cecb0..4676171) |
... |
... |
union node checkfunccall(const char *fnname, struct paramlist *pl); |
115 |
115 |
union node checkarraydecl(struct typeandname *tan); |
union node checkarraydecl(struct typeandname *tan); |
116 |
116 |
union node checkvartypedecl(struct typeandname *tan); |
union node checkvartypedecl(struct typeandname *tan); |
117 |
117 |
void checkwrongshadowing(const struct typeandname *tan, int linemod); |
void checkwrongshadowing(const struct typeandname *tan, int linemod); |
|
118 |
|
void checkmodulo(const struct typenode *a, const struct typenode *b); |
118 |
119 |
|
|
119 |
120 |
void str_append(char *buf, const char *str, size_t buf_size); |
void str_append(char *buf, const char *str, size_t buf_size); |
120 |
121 |
|
|