Helios-Commands.deploy.js 500 B

123456789101112131415161718192021222324252627
  1. smalltalk.addPackage('Helios-Commands', {});
  2. smalltalk.addClass('HLCommand', smalltalk.Object, [], 'Helios-Commands');
  3. smalltalk.addMethod(
  4. "_documentation",
  5. smalltalk.method({
  6. selector: "documentation",
  7. fn: function () {
  8. var self = this;
  9. return "";
  10. }
  11. }),
  12. smalltalk.HLCommand);
  13. smalltalk.addMethod(
  14. "_label",
  15. smalltalk.method({
  16. selector: "label",
  17. fn: function () {
  18. var self = this;
  19. smalltalk.send(self, "_subclassResponsibility", []);
  20. return self;
  21. }
  22. }),
  23. smalltalk.HLCommand);