Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: move context dependency walk_expression into create_context_dependency #6963

Merged
merged 11 commits into from
Jul 16, 2024
Prev Previous commit
typo
  • Loading branch information
ahabhgk committed Jul 16, 2024
commit b27fb139376dff9fc0c01bff41ed12a96e0c3f46
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 96,7 @@ pub fn create_context_dependency(
}

// Webpack will walk only the expression parts of the template string
// but we walk the whole tempate string, which allows us don't need to implement
// but we walk the whole template string, which allows us don't need to implement
// setExpression for BasicEvaluatedExpression (will introduce lots of lifetime)
// This may have slight performance difference in some cases
parser.walk_expression(expr);
Expand Down
Loading