webpack/test/configCases/inner-graph/eval-bailout/module.js

16 lines
147 B
JavaScript

import { a, b, c } from "./test";
export function x() {
a();
}
export function y() {
b();
eval("x()");
}
export function z() {
c();
y();
}