Browse Source

Remove unused instance variables.

contingency-plan
Brian Donovan 10 years ago
parent
commit
6dfa8f1e3f
  1. 1
      src/Bundle.js
  2. 1
      src/Module.js

1
src/Bundle.js

@ -23,7 +23,6 @@ export default class Bundle {
this.modulePromises = {};
this.statements = [];
this.externalModules = [];
this.defaultExportName = null;
this.internalNamespaceModules = [];
}

1
src/Module.js

@ -19,7 +19,6 @@ export default class Module {
this.bundle = bundle;
this.path = path;
this.relativePath = relative( bundle.base, path ).slice( 0, -3 ); // remove .js
this.magicString = new MagicString( source, {
filename: path

Loading…
Cancel
Save