index.vwf.json 328 B

12345678910111213141516
  1. {
  2. "extends": "proxy/node.vwf",
  3. "properties": {
  4. "pure": 1
  5. },
  6. "methods":{
  7. "initialize": {
  8. "body": "this.run();\n",
  9. "type": "application/javascript"
  10. },
  11. "run": {
  12. "body": "this.pure = this.time; \n console.log(this.pure);\n this.future(1).run(); \n ",
  13. "type": "application/javascript"
  14. }
  15. }
  16. }