Re: [dev] [OT] c syntax tree dumping tool

2010-09-06 Thread Kris Maglione
On Mon, Sep 06, 2010 at 07:39:31PM +0200, pancake wrote: I think anselm was already interested on something like this. So we can probably take it to do a suckless sloc or a c compiler based in radare2 assembler backend. Which would be far more minimal than gcc or llvm I'd also like to see a s

Re: [dev] [OT] c syntax tree dumping tool

2010-09-06 Thread pancake
Btw. If somebody wanna check my generic parser/abstracttree check http://hg.youterm.com/alt - Original message - > On Sun, Sep 05, 2010 at 01:44:06PM +0200, Szabolcs Nagy wrote: > > i'm involved in a c parsing tool project, c99tree, > > and pleased to announce its first release > > > >

Re: [dev] [OT] c syntax tree dumping tool

2010-09-06 Thread pancake
Thats great. I should take a look asap. In fact i wrote a generic abstract tree parser based on some basic parsing rules so it can parse C, javascript and others, but obviously not as well as yours. Not supporting macros and others.. I think anselm was already interested on something like this.

Re: [dev] [OT] c syntax tree dumping tool

2010-09-05 Thread Kris Maglione
On Sun, Sep 05, 2010 at 01:44:06PM +0200, Szabolcs Nagy wrote: i'm involved in a c parsing tool project, c99tree, and pleased to announce its first release http://repo.hu/projects/libporty it is in early development, but it can parse c99 code (without includes and preprocessor tokens) and print

[dev] [OT] c syntax tree dumping tool

2010-09-05 Thread Szabolcs Nagy
i'm involved in a c parsing tool project, c99tree, and pleased to announce its first release http://repo.hu/projects/libporty it is in early development, but it can parse c99 code (without includes and preprocessor tokens) and print an abstract syntax tree eg useful for listing function calls of