11 lines
137 B

import { C } from './c.js';
export function B () {};
B.prototype = {
c: function () {
return function () {
new C();
};
}()
};