[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: About FuncState
- From: roberto@... (Roberto Ierusalimschy)
- Date: Thu, 8 Jun 2006 12:39:43 -0300
> I know the struct FuncState is important for parsing. But I don't
> understand clearly the expression parsing and assignment parsing. I'm
> stumbled especially by the member 'freereg' and 'nactvar' of
> FuncState.
> Would you explain the detailed information of 'freereg' and 'nactvar'?
Basically the do what is in the comments: freereg is the first
free register (not in use); nactvar is the number of active local
variables. Can you be more specific about what you do not understand?
-- Roberto