| 1902 | } |
| 1903 | |
| 1904 | void ParsePostExpressions(Lexeme** str) |
| 1905 | { |
| 1906 | bool lastIsFunctionCall = false; |
| 1907 | bool hadPost = false; |
| 1908 | while(ParsePostExpression(str, &lastIsFunctionCall)) |
| 1909 | hadPost = true; |
| 1910 | if(hadPost && !lastIsFunctionCall && !((*str)->type >= lex_set && (*str)->type <= lex_xorset)) |
| 1911 | AddGetVariableNode((*str)->pos); |
| 1912 | } |
| 1913 | |
| 1914 | void ParseCustomConstructor(Lexeme** str, TypeInfo* resultType, NodeZeroOP* getPointer) |
| 1915 | { |
no test coverage detected