changeset 897:b38161a3abae

Add stub functions for unimplemented methods.
author wycc
date Wed, 29 Sep 2010 07:24:01 +0800
parents ae86e03acb6d
children 6044b977ce4f
files nodejs/animate.js
diffstat 1 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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");
 }
+