Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような単純な文法があるとします。
name -> girl_name | boy_name; girl_name -> 'Matilda' | 'Vicky' | 'Alice'; boy_name -> 'Spike' | 'Athos' | 'Mike';
ANTLRv3でモデリングしています。実行時に、boy_name 端末と girl_name 端末が使用できる値のセットを拡張することは可能ですか?
ありがとう :)