viml/parser/expressions: Make sure that listed nodes may be present

With the new test leaving `assert(false);` for any of the cases makes tests 
crash.
This commit is contained in:
ZyX
2017-11-26 16:57:42 +03:00
parent cddf84c398
commit 36a4f3a259
2 changed files with 45 additions and 4 deletions

View File

@@ -3065,12 +3065,9 @@ viml_pexpr_parse_end:
// to be caught later.
break;
}
case kExprNodeSubscript:
case kExprNodeConcatOrSubscript:
case kExprNodeComplexIdentifier:
case kExprNodeSubscript: {
// FIXME: Investigate whether above are OK to be present in the stack.
break;
}
case kExprNodeAssignment:
case kExprNodeMod:
case kExprNodeDivision: