diff options
| author | Olivier De Cannière <olivier.decanniere@qt.io> | 2025-05-09 12:38:12 +0200 |
|---|---|---|
| committer | Olivier De Cannière <olivier.decanniere@qt.io> | 2025-05-16 16:59:49 +0200 |
| commit | 138889eab042fda149e13ed1d2c86d543da003d0 (patch) | |
| tree | ca8879f8d14546f71b507bcc90015ac66f57ed1a /src/qml/compiler/qv4codegen.cpp | |
| parent | a8f0758c9c3d619c8aef4e3e12bb695b76af9a70 (diff) | |
Qml: Rename Expression to CommaExpression in the AST
Expression is confusing.
Pick-to: 6.9 6.8 6.5
Change-Id: I365ce06a266e24a506b14734fef8b977d6794a72
Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/qml/compiler/qv4codegen.cpp')
| -rw-r--r-- | src/qml/compiler/qv4codegen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/compiler/qv4codegen.cpp b/src/qml/compiler/qv4codegen.cpp index 48807ad480..24672c367f 100644 --- a/src/qml/compiler/qv4codegen.cpp +++ b/src/qml/compiler/qv4codegen.cpp @@ -1144,7 +1144,7 @@ bool Codegen::visit(ClassDeclaration *ast) return false; } -bool Codegen::visit(Expression *ast) +bool Codegen::visit(CommaExpression *ast) { if (hasError()) return false; |
