Hello.
I am trying to make a not too complicated translator using ANTLR. From the
approach I'm taking it's convenient for me to use Multimaps.
However I'm having problmes initializing the map, I have something likes
this:
model
scope{
Multimap <Integer, String> CMap;
Multimap <Integer, String> UMap;
;
}
@init {
$model::UMap = HashMultimap.create();
$model::CMap = HashMultimap.create();
}
: RULES
;
List: http://www.antlr.org/mailman/listinfo/antlr-interest
Unsubscribe:
http://www.antlr.org/mailman/options/antlr-interest/your-email-address
--
You received this message because you are subscribed to the Google Groups
"il-antlr-interest" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/il-antlr-interest?hl=en.