01_minimal.js 182 Bytes
'use strict'

module.exports = function () {
  class B {}

  class A {
    static constitute () { return [ B ] }
    constructor (b) {
      this.b = b
    }
  }
  return { A, B }
}