Skip to content

Commit 867bd12

Browse files
authored
fix auto numbered list closes #554
1 parent b7a9db4 commit 867bd12

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

docs/classes-emit.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ var __extends = this.__extends || function (d, b) {
5151
};
5252
```
5353
Here `d` refers to the derived class and `b` refers to the base class. This function does two things:
54+
5455
1. copies the static members of the base class onto the child class i.e. `for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];`
5556
1. sets up the child class function's prototype to optionally lookup members on the parent's `proto` i.e. effectively `d.prototype.__proto__ = b.prototype`
5657

0 commit comments

Comments
 (0)