I am a little confused regarding the lookaheads computation for LALR(1) parsers.
In the book "Parsing Techniques - A Practical Guide" they state that propagating lookaheads (+ spontaneous generated lookaheads) is equivalent to calculating the FOLLOW() for variables. So why LALR(1) parser (according to the Dragon book) uses the propagate/spontaneous technique at all, if it could do with FIRST() and FOLLOW(), which are simple and straightforward to compute?
If this is not the case, what is the difference between the two techniques?