Created
June 3, 2010 20:39
-
-
Save bnolan/424445 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Animal, Horse, Snake, sam, tom; | |
var __extends = function(child, parent) { | |
var ctor = function(){ }; | |
ctor.prototype = parent.prototype; | |
child.__superClass__ = parent.prototype; | |
child.prototype = new ctor(); | |
child.prototype.constructor = child; | |
}; | |
Animal = function() { }; | |
Animal.prototype.move = function(meters) { | |
return alert(this.name + " moved " + meters + "m."); | |
}; | |
Snake = function(name) { | |
this.name = name; | |
return this; | |
}; | |
__extends(Snake, Animal); | |
Snake.prototype.move = function() { | |
alert("Slithering..."); | |
return Snake.__superClass__.move.call(this, 5); | |
}; | |
Horse = function(name) { | |
this.name = name; | |
return this; | |
}; | |
__extends(Horse, Animal); | |
Horse.prototype.move = function() { | |
alert("Galloping..."); | |
return Horse.__superClass__.move.call(this, 45); | |
}; | |
sam = new Snake("Sammy the Python"); | |
tom = new Horse("Tommy the Palomino"); | |
sam.move(); | |
tom.move(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment