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.
let
1 parent c9e9716 commit fab1d86Copy full SHA for fab1d86
index.js
@@ -253,6 +253,8 @@ const preprocess = text => {
253
} else if (node.type === 'AwaitBlock') {
254
find_contextual_names(node.value);
255
find_contextual_names(node.error);
256
+ } else if (node.type === 'InlineComponent') {
257
+ node.attributes.forEach(node => node.type === 'Let' && find_contextual_names(node.expression || node.name));
258
}
259
if (contextual_names.length) {
260
nodes_with_contextual_scope.add(node);
0 commit comments