@lcap/nasl 0.3.10-beta → 0.3.10-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/out/service/logic/logic.d.ts +26 -17
  2. package/out/service/logic/logic.js +6 -0
  3. package/out/service/logic/logic.js.map +1 -1
  4. package/out/types/app/App.d.ts +5 -4
  5. package/out/types/app/App.js +30 -24
  6. package/out/types/app/App.js.map +1 -1
  7. package/out/types/cacheData.js.map +1 -1
  8. package/out/types/data/dataTypes.js +1 -1
  9. package/out/types/data/dataTypes.js.map +1 -1
  10. package/out/types/index.d.ts +2 -4
  11. package/out/types/index.js +3 -6
  12. package/out/types/index.js.map +1 -1
  13. package/out/types/logic/Logic.d.ts +4 -12
  14. package/out/types/logic/Logic.js +26 -14
  15. package/out/types/logic/Logic.js.map +1 -1
  16. package/out/types/logic/LogicItem.d.ts +1 -20
  17. package/out/types/logic/LogicItem.js +0 -184
  18. package/out/types/logic/LogicItem.js.map +1 -1
  19. package/out/types/logic/Param.js +2 -0
  20. package/out/types/logic/Param.js.map +1 -1
  21. package/out/types/logic/translator.js +39 -8
  22. package/out/types/logic/translator.js.map +1 -1
  23. package/out/types/page/Element.d.ts +10 -2
  24. package/out/types/page/Element.js +51 -4
  25. package/out/types/page/Element.js.map +1 -1
  26. package/out/types/page/View.d.ts +10 -16
  27. package/out/types/page/View.js +40 -15
  28. package/out/types/page/View.js.map +1 -1
  29. package/out/types/process/ProcessParam.js +3 -1
  30. package/out/types/process/ProcessParam.js.map +1 -1
  31. package/package.json +1 -2
  32. package/src/service/logic/logic.js +6 -0
  33. package/src/types/app/App.ts +36 -27
  34. package/src/types/cacheData.ts +7 -7
  35. package/src/types/data/dataTypes.ts +1 -1
  36. package/src/types/index.ts +2 -4
  37. package/src/types/logic/Logic.ts +35 -30
  38. package/src/types/logic/LogicItem.ts +5 -207
  39. package/src/types/logic/Param.ts +20 -17
  40. package/src/types/logic/translator.js +125 -153
  41. package/src/types/page/Element.ts +121 -71
  42. package/src/types/page/View.ts +79 -61
  43. package/src/types/page/dist/View.js +727 -0
  44. package/src/types/process/ProcessParam.ts +4 -1
  45. package/tsconfig.json +1 -1
  46. package/out/service/debugger/debugger.d.ts +0 -3
  47. package/out/service/debugger/debugger.js +0 -95
  48. package/out/service/debugger/debugger.js.map +0 -1
  49. package/out/test/units/config.spec.d.ts +0 -1
  50. package/out/test/units/config.spec.js +0 -12
  51. package/out/test/units/config.spec.js.map +0 -1
  52. package/out/types/logic/BreakPoint.d.ts +0 -42
  53. package/out/types/logic/BreakPoint.js +0 -155
  54. package/out/types/logic/BreakPoint.js.map +0 -1
  55. package/out/types/logic/Debugger.d.ts +0 -156
  56. package/out/types/logic/Debugger.js +0 -912
  57. package/out/types/logic/Debugger.js.map +0 -1
  58. package/src/service/debugger/debugger.js +0 -90
  59. package/src/types/logic/BreakPoint.ts +0 -200
  60. package/src/types/logic/Debugger.ts +0 -1140
  61. package/src/types/logic/translator.d.ts +0 -16
@@ -1,16 +0,0 @@
1
-
2
- declare namespace Translator {
3
- export interface FrontEndsourceMap {
4
- [id: string]: {
5
- isLogic: boolean,
6
- node: LogicItem,
7
- from: number,
8
- to: number,
9
- }
10
- }
11
- }
12
- declare function Translator(source: string, preScript: string): {
13
- output: string,
14
- sourceMap: Translator.FrontEndsourceMap,
15
- };
16
- export = Translator;