We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b0025d commit 01b3965Copy full SHA for 01b3965
lib/Sema/PreCheckExpr.cpp
@@ -1926,6 +1926,9 @@ Expr *PreCheckExpression::simplifyTypeConstructionWithLiteralArg(Expr *E) {
1926
/// expression and folding sequence expressions.
1927
bool ConstraintSystem::preCheckExpression(Expr *&expr, DeclContext *dc,
1928
bool replaceInvalidRefsWithErrors) {
1929
+ auto &ctx = dc->getASTContext();
1930
+ FrontendStatsTracer StatsTracer(ctx.Stats, "precheck-expr", expr);
1931
+
1932
PreCheckExpression preCheck(dc, expr, replaceInvalidRefsWithErrors);
1933
// Perform the pre-check.
1934
if (auto result = expr->walk(preCheck)) {
0 commit comments