Helios-Commands.js 761 B

12345678910111213141516171819202122232425262728293031323334353637
  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. category: 'accessing',
  8. fn: function () {
  9. var self = this;
  10. return "";
  11. },
  12. args: [],
  13. source: "documentation\x0a\x09^ ''",
  14. messageSends: [],
  15. referencedClasses: []
  16. }),
  17. smalltalk.HLCommand);
  18. smalltalk.addMethod(
  19. "_label",
  20. smalltalk.method({
  21. selector: "label",
  22. category: 'accessing',
  23. fn: function () {
  24. var self = this;
  25. smalltalk.send(self, "_subclassResponsibility", []);
  26. return self;
  27. },
  28. args: [],
  29. source: "label\x0a\x09self subclassResponsibility",
  30. messageSends: ["subclassResponsibility"],
  31. referencedClasses: []
  32. }),
  33. smalltalk.HLCommand);