show/hide this revision's text 2 Mostly minor edits (inserted word, moved comma, etc)

I think you are pretty close to the answer.

LR(1) means:

Parsing from left to right needs only one token to look-ahead for the context

where as LR(infinity),

whereas LR(infinity) means an infinite look-ahead. That is, the parser would have to know everything that was coming in order to figure out where it is now.

show/hide this revision's text 1

I think are pretty close to the answer.

LR(1) means:

Parsing from left to right needs only one token to look-ahead for the context

where as LR(infinity), means an infinite look-ahead. That is, the parser would have to know everything that was coming in order to figure out where it is now.