Context.js 672 B

12345678910111213141516171819202122232425262728293031
  1. var RTL$ = require("rtl.js");
  2. var JsString = require("js/JsString.js");
  3. var Object = require("js/Object.js");
  4. var Scope = RTL$.extend({
  5. init: function Scope(){
  6. }
  7. });
  8. var Rtl = RTL$.extend({
  9. init: function Rtl(){
  10. this.copy = null;
  11. this.strCmp = null;
  12. this.assignArrayFromString = null;
  13. this.setInclL = null;
  14. this.setInclR = null;
  15. this.assertId = null;
  16. }
  17. });
  18. var Type = RTL$.extend({
  19. init: function Type(){
  20. this.handleChar = null;
  21. this.handleLiteral = null;
  22. this.handleString = null;
  23. this.handleIdent = null;
  24. this.isLexem = null;
  25. this.qualifyScope = null;
  26. this.rtl = null;
  27. }
  28. });
  29. exports.Scope = Scope;
  30. exports.Rtl = Rtl;
  31. exports.Type = Type;