mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-22 03:40:49 +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;
|
special = S_open;
|
||||||
else if (c==')')
|
else if (c==')')
|
||||||
special = S_close;
|
special = S_close;
|
||||||
|
else if (c=='.')
|
||||||
|
special = S_member;
|
||||||
else if (c=='=')
|
else if (c=='=')
|
||||||
{
|
{
|
||||||
if (get (c))
|
if (get (c))
|
||||||
|
@ -65,7 +65,8 @@ namespace Compiler
|
|||||||
S_cmpEQ, S_cmpNE, S_cmpLT, S_cmpLE, S_cmpGT, S_cmpGE,
|
S_cmpEQ, S_cmpNE, S_cmpLT, S_cmpLE, S_cmpGT, S_cmpGE,
|
||||||
S_plus, S_minus, S_mult, S_div,
|
S_plus, S_minus, S_mult, S_div,
|
||||||
S_comma,
|
S_comma,
|
||||||
S_ref
|
S_ref,
|
||||||
|
S_member
|
||||||
};
|
};
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user