context sensitive grammar?



It is said that Perl has context-sensitive grammar.

but I can not find any syntax rule in src/perly.y like so..

Nonterminal terminal : some rule
| another rule;

or is the "context-sensitive" logic is written indirectly in code?

.