Use abbreviation "expr" instead of "expression" (#3375)

Part of switching to the [abbreviations we've decided to
use](https://docs.google.com/document/d/1RRYMm42osyqhI2LyjrjockYCutQ5dOf8Abu50kTrkX0/edit?resourcekey=0-kHyqOESbOHmzZphUbtLrTw#heading=h.pph7i5m5un7q).

I will rename files in a follow-up PR.
This commit is contained in:
josh11b
2023-11-10 01:32:32 +00:00
committed by GitHub
parent 6d5e62974c
commit 11ca083855
140 changed files with 1076 additions and 1114 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ auto HandleFunctionAfterParameters(Context& context) -> void {
if (context.PositionIs(Lex::TokenKind::MinusGreater)) {
context.PushState(State::FunctionReturnTypeFinish);
++context.position();
context.PushStateForExpression(PrecedenceGroup::ForType());
context.PushStateForExpr(PrecedenceGroup::ForType());
}
}