yz3456
2024-03-26 05d623d5b806f6650b9544dcbd4f322d677bf9a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
var inherits = require('./inherits.js')
var assert = require('assert')
 
function test(c) {
  assert(c.constructor === Child)
  assert(c.constructor.super_ === Parent)
  assert(Object.getPrototypeOf(c) === Child.prototype)
  assert(Object.getPrototypeOf(Object.getPrototypeOf(c)) === Parent.prototype)
  assert(c instanceof Child)
  assert(c instanceof Parent)
}
 
function Child() {
  Parent.call(this)
  test(this)
}
 
function Parent() {}
 
inherits(Child, Parent)
 
var c = new Child
test(c)
 
console.log('ok')