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 4fecc4c commit f99c558Copy full SHA for f99c558
rust/cube-prop-ctx-transpiler-swc-plugin/src/lib.rs
@@ -323,6 +323,16 @@ impl<'a> VisitMut for SqlAndReferencesFieldVisitor<'a> {
323
self.path_stack.pop();
324
}
325
326
+
327
+ fn visit_mut_array_lit(&mut self, arr: &mut ArrayLit) {
328
+ for (idx, el) in arr.elems.iter_mut().enumerate() {
329
+ if let Some(el) = el {
330
+ self.path_stack.push(idx.to_string());
331
+ el.visit_mut_children_with(self);
332
+ self.path_stack.pop();
333
+ }
334
335
336
337
338
pub struct KnownIdentifiersInjectVisitor<'a> {
0 commit comments