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

fix(language-core): inlay hints for <component :is> and <slot :name> #4661

Merged
merged 12 commits into from
Oct 23, 2024
Prev Previous commit
Next Next commit
Merge branch 'master' into pr/4661
  • Loading branch information
johnsoncodehk committed Oct 22, 2024
commit 962f1b412a091409e6bdc2a062014b35bb70c10f
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function* generateInterpolation(
): Generator<Code> {
const code = prefix + _code + suffix;
const ast = createTsAst(options.ts, astHolder, code);
for (let [section, offset, onlyError] of forEachInterpolationSegment(
for (let [section, offset, type] of forEachInterpolationSegment(
options.ts,
options.destructuredPropNames,
options.templateRefNames,
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.