Skip to content

Commit 5d8f809

Browse files
author
Timothy Johnson
committed
1 parent 13ef75b commit 5d8f809

File tree

7 files changed

+16
-0
lines changed

7 files changed

+16
-0
lines changed

src/compiler/compile/render_dom/index.ts

+10
Original file line numberDiff line numberDiff line change
@@ -372,6 +372,14 @@ export default function dom(
372372
}) as Expression)
373373
};
374374

375+
const ctx_names = component.compile_options.dev && {
376+
type: 'ArrayExpression',
377+
elements: initial_context.map(member => ({
378+
type: 'Literal',
379+
value: member.name
380+
}) as Expression)
381+
};
382+
375383
body.push(b`
376384
function ${definition}(${args}) {
377385
${reactive_store_declarations}
@@ -408,6 +416,8 @@ export default function dom(
408416
409417
${uses_props && b`$$props = @exclude_internal_props($$props);`}
410418
419+
${ctx_names && x`$$self.ctx_names = ${ctx_names};`}
420+
411421
return ${return_value};
412422
}
413423
`);

test/js/samples/debug-empty/expected.js

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ function instance($$self, $$props, $$invalidate) {
8787
if ("name" in $$props) $$invalidate(0, name = $$props.name);
8888
};
8989

90+
$$self.ctx_names = ["name"];
9091
return [name];
9192
}
9293

test/js/samples/debug-foo-bar-baz-things/expected.js

+1
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ function instance($$self, $$props, $$invalidate) {
194194
if ("baz" in $$props) $$invalidate(3, baz = $$props.baz);
195195
};
196196

197+
$$self.ctx_names = ["things", "foo", "bar", "baz"];
197198
return [things, foo, bar, baz];
198199
}
199200

test/js/samples/debug-foo/expected.js

+1
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ function instance($$self, $$props, $$invalidate) {
182182
if ("foo" in $$props) $$invalidate(1, foo = $$props.foo);
183183
};
184184

185+
$$self.ctx_names = ["things", "foo"];
185186
return [things, foo];
186187
}
187188

test/js/samples/debug-hoisted/expected.js

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ function instance($$self) {
6060
if ("kobzol" in $$props) $$invalidate(1, kobzol = $$props.kobzol);
6161
};
6262

63+
$$self.ctx_names = ["obj", "kobzol"];
6364
return [obj, kobzol];
6465
}
6566

test/js/samples/dev-warning-missing-data-computed/expected.js

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ function instance($$self, $$props, $$invalidate) {
9191
}
9292
};
9393

94+
$$self.ctx_names = ["foo", "bar"];
9495
return [foo, bar];
9596
}
9697

test/js/samples/loop-protect/expected.js

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ function instance($$self) {
8989
} while (true);
9090
}
9191

92+
$$self.ctx_names = [];
9293
return [];
9394
}
9495

0 commit comments

Comments
 (0)