Subject | Hash | Author | Date (UTC) |
---|---|---|---|
*** empty log message *** | cef95bf6a7aec8b05ceaa325e0b7cafe0e0fb616 | cilibrar | 2003-06-08 22:13:41 |
*** empty log message *** | c6a48acc98a4580e1dc9560b26b3adf579569319 | cilibrar | 2003-06-08 17:08:25 |
*** empty log message *** | a9084c6a8897b38d209f2f3839ed9fd8c17a5eb4 | cilibrar | 2003-06-08 15:59:21 |
*** empty log message *** | 594b07b664e8da134328e2099107f836c4783d22 | cilibrar | 2003-06-08 14:19:39 |
A makefile for cygwin. | 7114936321546139b5512821e3d868b21c0b89f1 | cilibrar | 2003-06-08 10:38:31 |
Added \n, \r, \t in double-quotes. Added debug keyword handling. Now it parses everything in the Scripts directory except demo.ai, which looks like it could never work anyway. | a76d8de5a85768c58297ad05dcc3bd361e3c8d69 | cilibrar | 2003-06-08 10:12:17 |
Make downcasting bug a bit more restrictive to minimize future problems. | 3bef4ca2d62e1de3fe70986de71a3da2b68ff25f | cilibrar | 2003-06-08 09:52:03 |
Fixed segfault involving undeclared variables by assuming they are integer. | 76b34be901540214c21b8af681bcf42620ca0e21 | cilibrar | 2003-06-08 09:49:56 |
Fixed bug with string literal addition. Added unfortunate special case to canconvert to allow downcasts from base to derived. Waiting on Blizzard to fix this one. (such a cast appears in one place in Blizzard.j) | 1384b0771dd6db4c6cb548fef3331f518509c68e | cilibrar | 2003-06-08 09:40:28 |
Allow null to be converted to code, string, and appropriate comparisons. | a2a05f7938a46a6a873d0f3313af760900403c88 | cilibrar | 2003-06-08 07:50:23 |
lets begin | edb29fca55a82526251fd7c671302425ed97d9bd | cilibrar | 2003-06-08 07:47:56 |
File | Lines added | Lines deleted |
---|---|---|
doc/readme.txt | 23 | 9 |
src/Makefile.cygwin | 1 | 1 |
File doc/readme.txt changed (mode: 100644) (index 348f198..c12eda6) | |||
1 | Jass2 parser for bison/yacc | ||
2 | by Rudi Cilibrasi | ||
3 | Sun Jun 8 00:51:53 CEST 2003 | ||
4 | thanks to Jeff Pang for the handy documentation that this was based | ||
5 | on at http://jass.sourceforge.net | ||
6 | |||
7 | To test this program: | ||
8 | cat common.j common.ai | ./sc | ||
9 | |||
1 | pjass | ||
2 | A lightweight and fast Jass2 parser for bison/yacc | ||
3 | by Rudi Cilibrasi | ||
4 | Sun Jun 8 00:51:53 CEST 2003 | ||
5 | thanks to Jeff Pang for the handy documentation that this was based | ||
6 | on at http://jass.sourceforge.net/ | ||
7 | Released under the BSD license | ||
8 | |||
9 | To use this program, list the files you would like to parse in order. | ||
10 | If you would like to parse from standard input (the keyboard), then | ||
11 | use - as an argument. If you supply no arguments to pjass, it will | ||
12 | parse the console standard input by default. | ||
13 | |||
14 | To test this program: | ||
15 | pjass common.j common.ai Blizzard.j | ||
16 | |||
17 | You can find news about this program and updates at | ||
18 | http://jass.sourceforge.net/ | ||
19 | |||
20 | Please send comments to | ||
21 | Rudi Cilibrasi | ||
22 | cilibrar@ofb.net | ||
23 |
File src/Makefile.cygwin changed (mode: 100644) (index a248267..3385eac) | |||
... | ... | package: | |
22 | 22 | tar Ccvfz ../ jass2.tar.gz jass2/Makefile jass2/grammar.y jass2/token.l jass2/misc.c jass2/misc.h jass2/readme.txt | tar Ccvfz ../ jass2.tar.gz jass2/Makefile jass2/grammar.y jass2/token.l jass2/misc.c jass2/misc.h jass2/readme.txt |
23 | 23 | ||
24 | 24 | binpackage: | binpackage: |
25 | rm -f PJASS.zip ; pkzip -a pjass.zip ../doc/readme.txt ./pjass.exe ; mv -f PJASS.zip pjass-bin-091.zip | ||
25 | rm -f PJASS.zip ; pkzip -a pjass.zip ../doc/readme.txt ./pjass.exe ; mv -f PJASS.zip pjass-bin-091-win32.zip |