mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 21:07:59 +03:00
added parsing for local variable declarations
This commit is contained in:
parent
16f6f27a90
commit
bff0855af0
7 changed files with 78 additions and 6 deletions
|
@ -9,6 +9,15 @@ namespace Compiler
|
|||
|
||||
class LineParser : public Parser
|
||||
{
|
||||
enum State
|
||||
{
|
||||
BeginState,
|
||||
ShortState, LongState, FloatState,
|
||||
EndState
|
||||
};
|
||||
|
||||
State mState;
|
||||
|
||||
public:
|
||||
|
||||
LineParser (ErrorHandler& errorHandler, Context& context);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue