|
a7d63e51e5
|
rewrite parser with C Syntax BNF file
|
2018-05-07 23:21:25 -04:00 |
|
|
e7835b4fac
|
start rewriting grammar
|
2018-04-24 21:10:48 -04:00 |
|
|
89e003b330
|
another fix to error location reporting
|
2018-04-24 21:05:33 -04:00 |
|
|
3cd2d96611
|
Display original source file location for errors
|
2018-04-23 23:51:35 -04:00 |
|
|
49afce6095
|
use last_column instead of first_column for error column tracking
|
2018-04-23 23:26:43 -04:00 |
|
|
45de80c852
|
show source line on error
|
2018-04-23 23:11:34 -04:00 |
|
|
fc5dfb7744
|
move C code out of parser.y to parser.c
|
2018-04-23 22:48:59 -04:00 |
|
|
8db0a47fb4
|
remove user_action() prototype
|
2018-04-23 22:25:13 -04:00 |
|
|
57dcf9e62d
|
create token nodes in lexer
|
2018-04-21 23:37:35 -04:00 |
|
|
89889b778f
|
Add Node module
|
2018-04-18 21:16:32 -04:00 |
|
|
866dd42196
|
use %option noyywrap
|
2018-04-18 20:46:14 -04:00 |
|
|
b2072de717
|
Keep track of line number and filename from preprocessor output for error messages
|
2018-04-18 20:10:23 -04:00 |
|
|
74031d18d7
|
add String_new_size()
|
2018-04-18 19:59:32 -04:00 |
|
|
3508deecc5
|
finish adding grammar
|
2018-04-13 22:16:07 -04:00 |
|
|
9d2c41edc1
|
Start adding some grammar definition
|
2018-04-11 22:05:39 -04:00 |
|
|
50480d80b4
|
simpler octal escape pattern
|
2018-04-11 21:39:21 -04:00 |
|
|
5615c5781d
|
allow hexadecimal and octal escapes within character constants
|
2018-04-11 21:38:58 -04:00 |
|
|
090521a805
|
allow leading "L" prefix for string constants
|
2018-04-11 21:36:15 -04:00 |
|
|
3170f0870c
|
add octal escape in string
|
2018-04-11 21:35:03 -04:00 |
|
|
81614c41ab
|
support all C character escape sequences
|
2018-04-11 21:29:18 -04:00 |
|
|
4ffc67919e
|
allow "L" prefix for character constants
|
2018-04-11 21:28:13 -04:00 |
|
|
e51103149b
|
fix floating point suffix
|
2018-04-11 21:25:37 -04:00 |
|
|
7149e3c5e3
|
allow sign after "e" in floating point constant
|
2018-04-11 21:24:13 -04:00 |
|
|
21a42232f0
|
allow "nn." or ".nn" for floating point numbers
|
2018-04-11 21:20:20 -04:00 |
|
|
75bda2b8ac
|
allow float constants to have "e" suffix
|
2018-04-11 21:18:21 -04:00 |
|
|
14bb4f4705
|
add more tokens
|
2018-04-10 21:23:03 -04:00 |
|
|
bd220b9b14
|
Parse after preprocessing
|
2018-04-07 11:17:28 -04:00 |
|
|
a87b938234
|
Add some temporary code to preprocess with gcc -E
|
2018-04-07 11:06:47 -04:00 |
|
|
19c61a91fe
|
add parse()
|
2018-04-07 10:06:49 -04:00 |
|
|
6422e8d145
|
ignore whitespace
|
2018-04-07 09:35:59 -04:00 |
|
|
c6f5200e69
|
Terminate String memory with '\0'
|
2018-04-07 09:34:25 -04:00 |
|
|
49e4e853be
|
Don't forget to BEGIN(INITIAL) when terminating a string
|
2018-04-07 09:31:10 -04:00 |
|
|
aaf47bf934
|
Build a String value in the lexer for string constants
|
2018-04-07 09:26:39 -04:00 |
|
|
961b3297f5
|
Add String module
|
2018-04-07 09:14:26 -04:00 |
|
|
7107699bc5
|
Capture preprocessor-output lines and EOLs
|
2018-04-07 08:38:30 -04:00 |
|
|
47bb3f5219
|
Add lexer tokens for integer, float, string constants and identifiers
|
2018-04-07 08:27:35 -04:00 |
|
|
8795d30953
|
add some C keyword tokens
|
2018-04-06 12:03:17 -04:00 |
|
|
3ead22e0cf
|
add initial empty C, flex, and bison sources
|
2018-04-06 11:38:27 -04:00 |
|
|
8d8c08cd85
|
Add waf, configure, Makefile, empty wscript
|
2018-04-06 10:58:29 -04:00 |
|