views:

57

answers:

1

Hi,

Is the ANTLR3 C Target Thread Safe?

Thx

A: 

You generally bind your own code to ANTLR trees, so that's entirely up to you to ensure.

Cory Petosky
So if i do something like this in my grammer:@members{ Type val;}val will be global and this won't be thread safe i guess.But how is it with scope{ Type val;}would this work?
TheShow