Mercurial > MadButterfly
comparison nodejs/animate.js @ 897:b38161a3abae
Add stub functions for unimplemented methods.
author | wycc |
---|---|
date | Wed, 29 Sep 2010 07:24:01 +0800 |
parents | 3136db0ac01b |
children | 6044b977ce4f |
comparison
equal
deleted
inserted
replaced
896:ae86e03acb6d | 897:b38161a3abae |
---|---|
266 for(w in this.words) { | 266 for(w in this.words) { |
267 w.start(); | 267 w.start(); |
268 } | 268 } |
269 } | 269 } |
270 | 270 |
271 program.prototype.stop=function(s) { | 271 program.prototype.step=function(s) { |
272 sys.puts("This function is not implemented yet"); | |
273 } | |
274 program.prototype.stop=function() { | |
272 for(w in this.words) { | 275 for(w in this.words) { |
273 w.stop(); | 276 w.stop(); |
274 } | 277 } |
275 } | 278 } |
276 program.prototype.finish=function() { | 279 program.prototype.finish=function() { |
285 sys.puts(li); | 288 sys.puts(li); |
286 li.start(); | 289 li.start(); |
287 } | 290 } |
288 } | 291 } |
289 exports.runexp=function(actions,start,exp) { | 292 exports.runexp=function(actions,start,exp) { |
290 } | 293 sys.puts("This function is not implemented yet"); |
294 } | |
295 |