On Fri, May 23, 2008 15:47, Barry Kaplan wrote:
I would like to match on the class of a field. I know I can use
"eval(option instanceof OptionInstrument)",
Is what you do like
when option : Option (
option instanceof OptionInstrument,
......
)
?
why not
when option : OptionInstrument (
.....
)
?
Christine