work save

This commit is contained in:
Roy Qu 2021-12-05 16:45:48 +08:00
parent 4d6f78b0fc
commit 3d8084c489
1 changed files with 28 additions and 5 deletions

View File

@ -3369,27 +3369,50 @@ PStatement CppParser::doParseSubExpression3(const QString &fileName,
if (pos>=phraseExpression.length())
return PStatement();
if (phraseExpression[pos]=="*") {
pos++;
return doParseSubExpression3(fileName,
pos++; //skip "*"
PStatement statement = doParseSubExpression3(fileName,
phraseExpression,
pos,
currentScope,
freeScoped);
//todo:
return statement;
} else if (phraseExpression[pos]=="&") {
pos++;
return doParseSubExpression3(fileName,
pos++; //skip "&"
PStatement statement = doParseSubExpression3(fileName,
phraseExpression,
pos,
currentScope,
freeScoped);
//todo:
return statement;
} else if (phraseExpression[pos]=="++"
|| phraseExpression[pos]=="--") {
pos++;
pos++; //skip "++" or "--"
return doParseSubExpression3(fileName,
phraseExpression,
pos,
currentScope,
freeScoped);
} else if (phraseExpression[pos]=="(") {
//parse
pos++;
PStatement typeStatement = doFindStatement(fileName,phraseExpression,pos,currentScope,freeScoped);
if (pos >= phraseExpression.length() || phraseExpression[pos]!=")") {
return PStatement();
} else if (typeStatement &&
(typeStatement->kind == StatementKind::skClass
|| typeStatement->kind == StatementKind::skEnumType
|| typeStatement->kind == StatementKind::skEnumClassType
|| typeStatement->kind == StatementKind::skTypedef)) {
PStatement statement = doParseSubExpression3(fileName,
phraseExpression,
pos,
currentScope,
freeScoped);
return typeStatement;
} else
return PStatement();
}
return doParseSubExpression2(fileName,
phraseExpression,