a zip code crypto-currency system good for red ONLY

compiler-host-factory.js 526B

12345678910111213
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var compiler_host_1 = require("./compiler-host");
  4. var hybrid_file_system_factory_1 = require("../util/hybrid-file-system-factory");
  5. var instance = null;
  6. function getInMemoryCompilerHostInstance(options) {
  7. if (!instance) {
  8. instance = new compiler_host_1.InMemoryCompilerHost(options, hybrid_file_system_factory_1.getInstance(false));
  9. }
  10. return instance;
  11. }
  12. exports.getInMemoryCompilerHostInstance = getInMemoryCompilerHostInstance;