mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-21 09:39:56 +00:00
Issue #181: added member variable access token
This commit is contained in:
parent
ce43ff8d05
commit
050559d2e2
@ -360,6 +360,8 @@ namespace Compiler
|
||||
special = S_open;
|
||||
else if (c==')')
|
||||
special = S_close;
|
||||
else if (c=='.')
|
||||
special = S_member;
|
||||
else if (c=='=')
|
||||
{
|
||||
if (get (c))
|
||||
|
@ -65,7 +65,8 @@ namespace Compiler
|
||||
S_cmpEQ, S_cmpNE, S_cmpLT, S_cmpLE, S_cmpGT, S_cmpGE,
|
||||
S_plus, S_minus, S_mult, S_div,
|
||||
S_comma,
|
||||
S_ref
|
||||
S_ref,
|
||||
S_member
|
||||
};
|
||||
|
||||
private:
|
||||
|
Loading…
x
Reference in New Issue
Block a user