# HG changeset patch # User wycc # Date 1285716241 -28800 # Node ID b38161a3abae541f0c20f2ab7d2691660ebc15b9 # Parent ae86e03acb6d1ea3b7d0877e88376b1b7e1f8464 Add stub functions for unimplemented methods. diff -r ae86e03acb6d -r b38161a3abae nodejs/animate.js --- a/nodejs/animate.js Tue Sep 28 17:28:13 2010 +0800 +++ b/nodejs/animate.js Wed Sep 29 07:24:01 2010 +0800 @@ -268,7 +268,10 @@ } } -program.prototype.stop=function(s) { +program.prototype.step=function(s) { + sys.puts("This function is not implemented yet"); +} +program.prototype.stop=function() { for(w in this.words) { w.stop(); } @@ -287,4 +290,6 @@ } } exports.runexp=function(actions,start,exp) { + sys.puts("This function is not implemented yet"); } +