slides through modules

This commit is contained in:
Jeremy Likness
2020-01-29 10:26:00 -08:00
parent 2086a20e3c
commit e19a4d83bd
7 changed files with 91 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
<title>Looking Back (2)...</title>
<h1>Looking Back...</h1>
<pre>
var square = (function (_super) {
__extends(square, _super);
function square() {
return _super.call(this, 4) || this;
}
return square;
}(shape));
</pre>
<next-slide>177-es5-ext-impl</next-slide>