1
0
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:
Marc Zinnschlag 2012-06-16 10:31:33 +02:00
parent ce43ff8d05
commit 050559d2e2
2 changed files with 4 additions and 1 deletions

View File

@ -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))

View File

@ -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: