开发者

What is wrong with this ParseKit BNF?

开发者 https://www.devze.com 2023-03-22 04:00 出处:网络
I\'m using ParseKit for objective-C which takes a BNF-like syntax for specifying grammers: @start = command+;

I'm using ParseKit for objective-C which takes a BNF-like syntax for specifying grammers:

@start = command+;
command = new;
new = 'new' object ';';
object = 'house' | other;

Inclusion of the last line causes an error. Basically I want to say an开发者_Python百科 object can be a house or something else. The non-terminal element "other" is supposed to catch whatever word was there that wasn't house.

Am I going about the "anything-here" idea the wrong way?

Thanks!


Developer of ParseKit here. Carmine's answer above is excellent and you should take his advice. One small additional note:

If you want to make it easy for your Parser delegate to notice when 'house' was matched vs. any other random word, I would change the last line of your grammar above to:

object = house | other;
house = 'house';
other = Word;

Then you should implement the two following callback methods in your Parser delegate:

- (void)parser:(PKParser *)p didMatchHouse:(PKAssembly *)a;
- (void)parser:(PKParser *)p didMatchOther:(PKAssembly *)a;

If you want to allow other to match any token at all (not just words, but also numbers, symbols, quoted strings, etc), you can use the builtin Any type. In that case, you would change the last line of my example above to:

other = Any;


As suggested in the comments, you should either replace other with Word or add a new rule:

other = Word;

Since 'house' is a Word, you can also directly replace the object rule with:

object = Word;

A Word in ParseKit is a contiguous sequence of characters ([a-zA-Z]), numbers ([0-9]), and the symbols -, _, and ', that starts with a character. You can find more information about ParseKit tokens in the documentation.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号