@eagleoutice/flowr 2.9.14 → 2.10.2

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 (214) hide show
  1. package/README.md +52 -29
  2. package/abstract-interpretation/absint-visitor.d.ts +13 -8
  3. package/abstract-interpretation/absint-visitor.js +35 -26
  4. package/abstract-interpretation/data-frame/dataframe-domain.d.ts +1 -2
  5. package/abstract-interpretation/data-frame/dataframe-domain.js +14 -15
  6. package/abstract-interpretation/data-frame/mappers/access-mapper.js +2 -15
  7. package/abstract-interpretation/data-frame/mappers/arguments.d.ts +11 -17
  8. package/abstract-interpretation/data-frame/mappers/arguments.js +18 -18
  9. package/abstract-interpretation/data-frame/mappers/function-mapper.d.ts +41 -15
  10. package/abstract-interpretation/data-frame/mappers/function-mapper.js +74 -48
  11. package/abstract-interpretation/data-frame/mappers/replacement-mapper.js +2 -1
  12. package/abstract-interpretation/data-frame/semantics.d.ts +1 -1
  13. package/abstract-interpretation/data-frame/semantics.js +31 -35
  14. package/abstract-interpretation/data-frame/shape-inference.js +1 -1
  15. package/abstract-interpretation/domains/interval-domain.d.ts +1 -0
  16. package/abstract-interpretation/domains/interval-domain.js +3 -0
  17. package/abstract-interpretation/domains/product-domain.d.ts +9 -0
  18. package/abstract-interpretation/domains/product-domain.js +26 -6
  19. package/abstract-interpretation/domains/state-abstract-domain.d.ts +36 -22
  20. package/abstract-interpretation/domains/state-abstract-domain.js +169 -62
  21. package/abstract-interpretation/unsupported-functions.d.ts +10 -0
  22. package/abstract-interpretation/unsupported-functions.js +45 -0
  23. package/benchmark/slicer.js +10 -13
  24. package/benchmark/stats/stats.d.ts +2 -2
  25. package/cli/flowr.js +1 -1
  26. package/cli/repl/parser/slice-query-parser.d.ts +2 -2
  27. package/config.d.ts +4 -0
  28. package/config.js +5 -3
  29. package/control-flow/control-flow-graph.js +13 -9
  30. package/control-flow/semantic-cfg-guided-visitor.d.ts +6 -0
  31. package/control-flow/semantic-cfg-guided-visitor.js +6 -0
  32. package/dataflow/environments/built-in-proc-name.d.ts +6 -0
  33. package/dataflow/environments/built-in-proc-name.js +6 -0
  34. package/dataflow/environments/built-in.d.ts +7 -5
  35. package/dataflow/environments/built-in.js +2 -0
  36. package/dataflow/environments/default-builtin-config.d.ts +442 -6
  37. package/dataflow/environments/default-builtin-config.js +158 -3
  38. package/dataflow/environments/identifier.d.ts +4 -0
  39. package/dataflow/environments/identifier.js +17 -0
  40. package/dataflow/environments/overwrite.js +2 -5
  41. package/dataflow/graph/call-graph.d.ts +4 -7
  42. package/dataflow/graph/call-graph.js +0 -22
  43. package/dataflow/graph/df-helper.d.ts +23 -12
  44. package/dataflow/graph/df-helper.js +44 -7
  45. package/dataflow/graph/graph-helper.d.ts +9 -4
  46. package/dataflow/graph/graph-helper.js +26 -3
  47. package/dataflow/graph/graph.d.ts +23 -2
  48. package/dataflow/graph/graph.js +38 -4
  49. package/dataflow/graph/vertex.d.ts +2 -0
  50. package/dataflow/instrument/instrument-dataflow-count.d.ts +10 -0
  51. package/dataflow/instrument/instrument-dataflow-count.js +10 -0
  52. package/dataflow/internal/process/functions/call/argument/unpack-argument.d.ts +4 -4
  53. package/dataflow/internal/process/functions/call/built-in/built-in-access.d.ts +3 -3
  54. package/dataflow/internal/process/functions/call/built-in/built-in-apply.d.ts +2 -2
  55. package/dataflow/internal/process/functions/call/built-in/built-in-apply.js +1 -0
  56. package/dataflow/internal/process/functions/call/built-in/built-in-assignment.d.ts +3 -3
  57. package/dataflow/internal/process/functions/call/built-in/built-in-assignment.js +1 -1
  58. package/dataflow/internal/process/functions/call/built-in/built-in-eval.d.ts +2 -2
  59. package/dataflow/internal/process/functions/call/built-in/built-in-expression-list.d.ts +2 -2
  60. package/dataflow/internal/process/functions/call/built-in/built-in-for-loop.d.ts +2 -2
  61. package/dataflow/internal/process/functions/call/built-in/built-in-for-loop.js +1 -1
  62. package/dataflow/internal/process/functions/call/built-in/built-in-function-definition.d.ts +2 -2
  63. package/dataflow/internal/process/functions/call/built-in/built-in-function-definition.js +8 -19
  64. package/dataflow/internal/process/functions/call/built-in/built-in-get.d.ts +2 -2
  65. package/dataflow/internal/process/functions/call/built-in/built-in-if-then-else.d.ts +2 -2
  66. package/dataflow/internal/process/functions/call/built-in/built-in-library.d.ts +2 -2
  67. package/dataflow/internal/process/functions/call/built-in/built-in-list.d.ts +2 -2
  68. package/dataflow/internal/process/functions/call/built-in/built-in-local.d.ts +2 -2
  69. package/dataflow/internal/process/functions/call/built-in/built-in-pipe.d.ts +23 -3
  70. package/dataflow/internal/process/functions/call/built-in/built-in-pipe.js +80 -12
  71. package/dataflow/internal/process/functions/call/built-in/built-in-purrr-formula.d.ts +41 -0
  72. package/dataflow/internal/process/functions/call/built-in/built-in-purrr-formula.js +179 -0
  73. package/dataflow/internal/process/functions/call/built-in/built-in-quote.d.ts +7 -4
  74. package/dataflow/internal/process/functions/call/built-in/built-in-quote.js +62 -1
  75. package/dataflow/internal/process/functions/call/built-in/built-in-recall.d.ts +7 -2
  76. package/dataflow/internal/process/functions/call/built-in/built-in-recall.js +15 -1
  77. package/dataflow/internal/process/functions/call/built-in/built-in-register-hook.d.ts +2 -2
  78. package/dataflow/internal/process/functions/call/built-in/built-in-repeat-loop.d.ts +2 -2
  79. package/dataflow/internal/process/functions/call/built-in/built-in-replacement.d.ts +2 -2
  80. package/dataflow/internal/process/functions/call/built-in/built-in-rm.d.ts +2 -2
  81. package/dataflow/internal/process/functions/call/built-in/built-in-s-seven-dispatch.d.ts +2 -2
  82. package/dataflow/internal/process/functions/call/built-in/built-in-s-seven-new-generic.d.ts +2 -2
  83. package/dataflow/internal/process/functions/call/built-in/built-in-s-three-dispatch.d.ts +2 -2
  84. package/dataflow/internal/process/functions/call/built-in/built-in-source.d.ts +2 -2
  85. package/dataflow/internal/process/functions/call/built-in/built-in-special-bin-op.d.ts +2 -2
  86. package/dataflow/internal/process/functions/call/built-in/built-in-stop-if-not.d.ts +2 -2
  87. package/dataflow/internal/process/functions/call/built-in/built-in-try-catch.d.ts +2 -2
  88. package/dataflow/internal/process/functions/call/built-in/built-in-vector.d.ts +2 -2
  89. package/dataflow/internal/process/functions/call/built-in/built-in-while-loop.d.ts +2 -2
  90. package/dataflow/internal/process/functions/call/common.d.ts +2 -2
  91. package/dataflow/internal/process/functions/call/common.js +6 -4
  92. package/dataflow/internal/process/functions/call/known-call-handling.d.ts +2 -2
  93. package/dataflow/internal/process/functions/call/named-call-handling.d.ts +2 -2
  94. package/dataflow/internal/process/functions/process-parameter.js +1 -1
  95. package/documentation/doc-readme.js +2 -1
  96. package/documentation/wiki-absint.js +6 -5
  97. package/documentation/wiki-analyzer.js +0 -2
  98. package/documentation/wiki-linter.js +6 -0
  99. package/documentation/wiki-normalized-ast.js +7 -7
  100. package/linter/linter-rules.d.ts +49 -1
  101. package/linter/linter-rules.js +5 -1
  102. package/linter/rules/dataframe-access-validation.d.ts +1 -1
  103. package/linter/rules/dataframe-access-validation.js +3 -4
  104. package/linter/rules/problematic-eval.d.ts +44 -0
  105. package/linter/rules/problematic-eval.js +83 -0
  106. package/linter/rules/roxygen-arguments.d.ts +35 -0
  107. package/linter/rules/roxygen-arguments.js +100 -0
  108. package/package.json +8 -9
  109. package/project/context/flowr-analyzer-context.d.ts +1 -8
  110. package/project/context/flowr-analyzer-context.js +1 -7
  111. package/project/context/flowr-analyzer-environment-context.d.ts +5 -0
  112. package/project/context/flowr-analyzer-environment-context.js +6 -0
  113. package/project/context/flowr-analyzer-files-context.d.ts +6 -0
  114. package/project/context/flowr-analyzer-files-context.js +4 -2
  115. package/project/flowr-analyzer-builder.js +1 -4
  116. package/queries/catalog/call-context-query/call-context-query-executor.d.ts +1 -1
  117. package/queries/catalog/call-context-query/call-context-query-executor.js +10 -5
  118. package/queries/catalog/call-context-query/call-context-query-format.d.ts +1 -1
  119. package/queries/catalog/dependencies-query/function-info/library-functions.js +2 -0
  120. package/queries/catalog/df-shape-query/df-shape-query-executor.js +1 -1
  121. package/queries/catalog/df-shape-query/df-shape-query-format.d.ts +3 -3
  122. package/queries/catalog/df-shape-query/df-shape-query-format.js +7 -2
  123. package/queries/catalog/does-call-query/does-call-query-executor.js +1 -1
  124. package/queries/catalog/does-call-query/does-call-query-format.d.ts +2 -2
  125. package/queries/catalog/files-query/files-query-executor.js +0 -1
  126. package/queries/catalog/happens-before-query/happens-before-query-executor.js +2 -2
  127. package/queries/catalog/happens-before-query/happens-before-query-format.d.ts +3 -3
  128. package/queries/catalog/input-sources-query/input-sources-query-executor.d.ts +6 -0
  129. package/queries/catalog/input-sources-query/input-sources-query-executor.js +66 -0
  130. package/queries/catalog/input-sources-query/input-sources-query-format.d.ts +36 -0
  131. package/queries/catalog/input-sources-query/input-sources-query-format.js +63 -0
  132. package/queries/catalog/input-sources-query/simple-input-classifier.d.ts +92 -0
  133. package/queries/catalog/input-sources-query/simple-input-classifier.js +310 -0
  134. package/queries/catalog/inspect-exceptions-query/inspect-exception-query-executor.d.ts +2 -2
  135. package/queries/catalog/inspect-exceptions-query/inspect-exception-query-executor.js +1 -1
  136. package/queries/catalog/inspect-exceptions-query/inspect-exception-query-format.d.ts +2 -2
  137. package/queries/catalog/inspect-higher-order-query/inspect-higher-order-query-executor.js +1 -1
  138. package/queries/catalog/inspect-higher-order-query/inspect-higher-order-query-format.d.ts +2 -2
  139. package/queries/catalog/inspect-recursion-query/inspect-recursion-query-format.d.ts +2 -2
  140. package/queries/catalog/location-map-query/location-map-query-executor.js +1 -1
  141. package/queries/catalog/location-map-query/location-map-query-format.d.ts +2 -2
  142. package/queries/catalog/origin-query/origin-query-executor.d.ts +2 -2
  143. package/queries/catalog/origin-query/origin-query-executor.js +1 -1
  144. package/queries/catalog/origin-query/origin-query-format.d.ts +3 -3
  145. package/queries/catalog/provenance-query/provenance-query-executor.d.ts +1 -4
  146. package/queries/catalog/provenance-query/provenance-query-executor.js +3 -6
  147. package/queries/catalog/provenance-query/provenance-query-format.d.ts +2 -2
  148. package/queries/catalog/resolve-value-query/resolve-value-query-executor.js +1 -1
  149. package/queries/query.d.ts +9 -1
  150. package/queries/query.js +2 -0
  151. package/r-bridge/data/data.d.ts +2 -2
  152. package/r-bridge/data/data.js +2 -2
  153. package/r-bridge/lang-4.x/ast/model/model.d.ts +3 -0
  154. package/r-bridge/lang-4.x/ast/model/model.js +3 -0
  155. package/r-bridge/lang-4.x/ast/model/nodes/r-access.d.ts +16 -1
  156. package/r-bridge/lang-4.x/ast/model/nodes/r-access.js +2 -0
  157. package/r-bridge/lang-4.x/ast/model/nodes/r-argument.d.ts +29 -6
  158. package/r-bridge/lang-4.x/ast/model/nodes/r-argument.js +16 -2
  159. package/r-bridge/lang-4.x/ast/model/nodes/r-binary-op.d.ts +16 -1
  160. package/r-bridge/lang-4.x/ast/model/nodes/r-binary-op.js +2 -0
  161. package/r-bridge/lang-4.x/ast/model/nodes/r-break.d.ts +15 -0
  162. package/r-bridge/lang-4.x/ast/model/nodes/r-break.js +2 -0
  163. package/r-bridge/lang-4.x/ast/model/nodes/r-comment.d.ts +15 -0
  164. package/r-bridge/lang-4.x/ast/model/nodes/r-comment.js +2 -0
  165. package/r-bridge/lang-4.x/ast/model/nodes/r-expression-list.d.ts +16 -1
  166. package/r-bridge/lang-4.x/ast/model/nodes/r-expression-list.js +2 -0
  167. package/r-bridge/lang-4.x/ast/model/nodes/r-for-loop.d.ts +16 -1
  168. package/r-bridge/lang-4.x/ast/model/nodes/r-for-loop.js +2 -0
  169. package/r-bridge/lang-4.x/ast/model/nodes/r-function-call.d.ts +19 -4
  170. package/r-bridge/lang-4.x/ast/model/nodes/r-function-call.js +2 -0
  171. package/r-bridge/lang-4.x/ast/model/nodes/r-function-definition.d.ts +21 -0
  172. package/r-bridge/lang-4.x/ast/model/nodes/r-function-definition.js +16 -0
  173. package/r-bridge/lang-4.x/ast/model/nodes/r-if-then-else.d.ts +16 -1
  174. package/r-bridge/lang-4.x/ast/model/nodes/r-if-then-else.js +2 -0
  175. package/r-bridge/lang-4.x/ast/model/nodes/r-line-directive.d.ts +16 -1
  176. package/r-bridge/lang-4.x/ast/model/nodes/r-line-directive.js +2 -0
  177. package/r-bridge/lang-4.x/ast/model/nodes/r-logical.d.ts +16 -1
  178. package/r-bridge/lang-4.x/ast/model/nodes/r-logical.js +2 -0
  179. package/r-bridge/lang-4.x/ast/model/nodes/r-next.d.ts +16 -1
  180. package/r-bridge/lang-4.x/ast/model/nodes/r-next.js +2 -0
  181. package/r-bridge/lang-4.x/ast/model/nodes/r-number.d.ts +16 -1
  182. package/r-bridge/lang-4.x/ast/model/nodes/r-number.js +2 -0
  183. package/r-bridge/lang-4.x/ast/model/nodes/r-parameter.d.ts +16 -1
  184. package/r-bridge/lang-4.x/ast/model/nodes/r-parameter.js +2 -0
  185. package/r-bridge/lang-4.x/ast/model/nodes/r-pipe.d.ts +25 -1
  186. package/r-bridge/lang-4.x/ast/model/nodes/r-pipe.js +15 -0
  187. package/r-bridge/lang-4.x/ast/model/nodes/r-repeat-loop.d.ts +16 -1
  188. package/r-bridge/lang-4.x/ast/model/nodes/r-repeat-loop.js +2 -0
  189. package/r-bridge/lang-4.x/ast/model/nodes/r-string.d.ts +16 -1
  190. package/r-bridge/lang-4.x/ast/model/nodes/r-string.js +2 -0
  191. package/r-bridge/lang-4.x/ast/model/nodes/r-symbol.d.ts +16 -1
  192. package/r-bridge/lang-4.x/ast/model/nodes/r-symbol.js +2 -0
  193. package/r-bridge/lang-4.x/ast/model/nodes/r-unary-op.d.ts +16 -1
  194. package/r-bridge/lang-4.x/ast/model/nodes/r-unary-op.js +2 -0
  195. package/r-bridge/lang-4.x/ast/model/nodes/r-while-loop.d.ts +16 -1
  196. package/r-bridge/lang-4.x/ast/model/nodes/r-while-loop.js +2 -0
  197. package/r-bridge/lang-4.x/ast/model/versions.d.ts +2 -0
  198. package/r-bridge/lang-4.x/ast/model/versions.js +3 -1
  199. package/r-bridge/roxygen2/documentation-provider.js +15 -6
  200. package/r-bridge/roxygen2/roxygen-ast.d.ts +3 -1
  201. package/search/flowr-search-builder.js +3 -2
  202. package/search/search-executor/search-generators.js +1 -1
  203. package/slicing/criterion/parse.d.ts +11 -10
  204. package/slicing/criterion/parse.js +9 -8
  205. package/slicing/static/static-slicer.js +24 -1
  206. package/util/collections/arrays.d.ts +4 -0
  207. package/util/collections/arrays.js +7 -0
  208. package/util/mermaid/ast.js +2 -1
  209. package/util/mermaid/dfg.js +2 -1
  210. package/util/record.d.ts +23 -0
  211. package/util/record.js +33 -0
  212. package/util/version.js +1 -1
  213. package/abstract-interpretation/domains/mapped-abstract-domain.d.ts +0 -41
  214. package/abstract-interpretation/domains/mapped-abstract-domain.js +0 -213
@@ -109,6 +109,15 @@ export declare const DefaultBuiltinConfig: [{
109
109
  };
110
110
  };
111
111
  readonly assumePrimitive: false;
112
+ }, {
113
+ readonly type: "function";
114
+ readonly names: ["invisible"];
115
+ readonly processor: BuiltInProcName.Default;
116
+ readonly config: {
117
+ readonly returnsNthArgument: 0;
118
+ readonly forceArgs: "all";
119
+ };
120
+ readonly assumePrimitive: true;
112
121
  }, {
113
122
  readonly type: "function";
114
123
  readonly names: string[];
@@ -380,7 +389,7 @@ export declare const DefaultBuiltinConfig: [{
380
389
  readonly assumePrimitive: false;
381
390
  }, {
382
391
  readonly type: "function";
383
- readonly names: [Identifier, Identifier];
392
+ readonly names: [Identifier, Identifier, Identifier];
384
393
  readonly processor: BuiltInProcName.Library;
385
394
  readonly config: {};
386
395
  readonly assumePrimitive: false;
@@ -482,10 +491,400 @@ export declare const DefaultBuiltinConfig: [{
482
491
  readonly assumePrimitive: true;
483
492
  }, {
484
493
  readonly type: "function";
485
- readonly names: ["|>", "%>%"];
494
+ readonly names: ["|>"];
486
495
  readonly processor: BuiltInProcName.Pipe;
487
- readonly config: {};
496
+ readonly config: {
497
+ readonly pipePlaceholderName: "_";
498
+ };
499
+ readonly assumePrimitive: true;
500
+ }, {
501
+ readonly type: "function";
502
+ readonly names: ["%>%", "%!>%"];
503
+ readonly processor: BuiltInProcName.Pipe;
504
+ readonly config: {
505
+ readonly pipePlaceholderName: ".";
506
+ readonly rhsMightBeSymbol: true;
507
+ };
508
+ readonly assumePrimitive: true;
509
+ }, {
510
+ readonly type: "function";
511
+ readonly names: ["%<>%"];
512
+ readonly processor: BuiltInProcName.Pipe;
513
+ readonly config: {
514
+ readonly pipePlaceholderName: ".";
515
+ readonly assignLhs: true;
516
+ readonly rhsMightBeSymbol: true;
517
+ };
518
+ readonly assumePrimitive: true;
519
+ }, {
520
+ readonly type: "function";
521
+ readonly names: ["%T>%"];
522
+ readonly processor: BuiltInProcName.Pipe;
523
+ readonly config: {
524
+ readonly pipePlaceholderName: ".";
525
+ readonly returnLhs: true;
526
+ readonly rhsMightBeSymbol: true;
527
+ };
488
528
  readonly assumePrimitive: true;
529
+ }, {
530
+ readonly type: "function";
531
+ readonly names: [Identifier, Identifier, Identifier, Identifier, Identifier];
532
+ readonly processor: BuiltInProcName.PurrrFormula;
533
+ readonly config: {
534
+ readonly args: {
535
+ readonly '.x': {
536
+ readonly index: 0;
537
+ readonly name: ".x";
538
+ };
539
+ };
540
+ readonly '.f': {
541
+ readonly index: 1;
542
+ readonly name: ".f";
543
+ };
544
+ readonly ignore: [".progress"];
545
+ };
546
+ }, {
547
+ readonly type: "function";
548
+ readonly names: [Identifier, Identifier, Identifier, Identifier, Identifier];
549
+ readonly processor: BuiltInProcName.PurrrFormula;
550
+ readonly config: {
551
+ readonly args: {
552
+ readonly '.l': {
553
+ readonly index: 0;
554
+ readonly name: ".l";
555
+ };
556
+ };
557
+ readonly '.f': {
558
+ readonly index: 1;
559
+ readonly name: ".f";
560
+ };
561
+ readonly ignore: [".progress"];
562
+ };
563
+ }, {
564
+ readonly type: "function";
565
+ readonly names: [Identifier, Identifier, Identifier, Identifier, Identifier];
566
+ readonly processor: BuiltInProcName.PurrrFormula;
567
+ readonly config: {
568
+ readonly args: {
569
+ readonly '.x': {
570
+ readonly index: 0;
571
+ readonly name: ".x";
572
+ };
573
+ readonly '.y': {
574
+ readonly index: 1;
575
+ readonly name: ".y";
576
+ };
577
+ };
578
+ readonly '.f': {
579
+ readonly index: 2;
580
+ readonly name: ".f";
581
+ };
582
+ readonly ignore: [".progress"];
583
+ };
584
+ }, {
585
+ readonly type: "function";
586
+ readonly names: [Identifier, Identifier, Identifier, Identifier, Identifier, Identifier, Identifier, Identifier, Identifier];
587
+ readonly processor: BuiltInProcName.PurrrFormula;
588
+ readonly config: {
589
+ readonly args: {
590
+ readonly '.x': {
591
+ readonly index: 0;
592
+ readonly name: ".x";
593
+ };
594
+ };
595
+ readonly '.f': {
596
+ readonly index: 1;
597
+ readonly name: ".f";
598
+ };
599
+ readonly ignore: [];
600
+ };
601
+ }, {
602
+ readonly type: "function";
603
+ readonly names: [Identifier];
604
+ readonly processor: BuiltInProcName.PurrrFormula;
605
+ readonly config: {
606
+ readonly args: {
607
+ readonly '.x': {
608
+ readonly index: 0;
609
+ readonly name: ".x";
610
+ };
611
+ readonly '.y': {
612
+ readonly index: 1;
613
+ readonly name: ".y";
614
+ };
615
+ };
616
+ readonly '.f': {
617
+ readonly index: 2;
618
+ readonly name: ".f";
619
+ };
620
+ readonly ignore: [];
621
+ };
622
+ }, {
623
+ readonly type: "function";
624
+ readonly names: [Identifier, Identifier];
625
+ readonly processor: BuiltInProcName.PurrrFormula;
626
+ readonly config: {
627
+ readonly args: {
628
+ readonly '.x': {
629
+ readonly index: 0;
630
+ readonly name: ".x";
631
+ };
632
+ readonly '.at': {
633
+ readonly index: 1;
634
+ readonly name: ".at";
635
+ };
636
+ };
637
+ readonly '.f': {
638
+ readonly index: 2;
639
+ readonly name: ".f";
640
+ };
641
+ readonly ignore: [".progress"];
642
+ };
643
+ }, {
644
+ readonly type: "function";
645
+ readonly names: [Identifier];
646
+ readonly processor: BuiltInProcName.PurrrFormula;
647
+ readonly config: {
648
+ readonly args: {
649
+ readonly '.x': {
650
+ readonly index: 0;
651
+ readonly name: ".x";
652
+ };
653
+ readonly '.at': {
654
+ readonly index: 1;
655
+ readonly name: ".at";
656
+ };
657
+ };
658
+ readonly '.f': {
659
+ readonly index: 2;
660
+ readonly name: ".f";
661
+ };
662
+ readonly ignore: [];
663
+ };
664
+ }, {
665
+ readonly type: "function";
666
+ readonly names: [Identifier, Identifier, Identifier];
667
+ readonly processor: BuiltInProcName.PurrrFormula;
668
+ readonly config: {
669
+ readonly args: {
670
+ readonly '.x': {
671
+ readonly index: 0;
672
+ readonly name: ".x";
673
+ };
674
+ readonly '.p': {
675
+ readonly index: 1;
676
+ readonly name: ".p";
677
+ };
678
+ };
679
+ readonly '.f': {
680
+ readonly index: 2;
681
+ readonly name: ".f";
682
+ };
683
+ readonly ignore: [".else"];
684
+ };
685
+ }, {
686
+ readonly type: "function";
687
+ readonly names: [Identifier];
688
+ readonly processor: BuiltInProcName.PurrrFormula;
689
+ readonly config: {
690
+ readonly args: {
691
+ readonly '.x': {
692
+ readonly index: 0;
693
+ readonly name: ".x";
694
+ };
695
+ };
696
+ readonly '.f': {
697
+ readonly index: 1;
698
+ readonly name: ".f";
699
+ };
700
+ readonly ignore: [".progress"];
701
+ readonly returnArg: ".x";
702
+ };
703
+ }, {
704
+ readonly type: "function";
705
+ readonly names: [Identifier];
706
+ readonly processor: BuiltInProcName.PurrrFormula;
707
+ readonly config: {
708
+ readonly args: {
709
+ readonly '.x': {
710
+ readonly index: 0;
711
+ readonly name: ".x";
712
+ };
713
+ };
714
+ readonly '.f': {
715
+ readonly index: 1;
716
+ readonly name: ".f";
717
+ };
718
+ readonly ignore: [];
719
+ readonly returnArg: ".x";
720
+ };
721
+ }, {
722
+ readonly type: "function";
723
+ readonly names: [Identifier];
724
+ readonly processor: BuiltInProcName.PurrrFormula;
725
+ readonly config: {
726
+ readonly args: {
727
+ readonly '.l': {
728
+ readonly index: 0;
729
+ readonly name: ".l";
730
+ };
731
+ };
732
+ readonly '.f': {
733
+ readonly index: 1;
734
+ readonly name: ".f";
735
+ };
736
+ readonly ignore: [".progress"];
737
+ readonly returnArg: ".l";
738
+ };
739
+ }, {
740
+ readonly type: "function";
741
+ readonly names: [Identifier];
742
+ readonly processor: BuiltInProcName.PurrrFormula;
743
+ readonly config: {
744
+ readonly args: {
745
+ readonly '.x': {
746
+ readonly index: 0;
747
+ readonly name: ".x";
748
+ };
749
+ readonly '.y': {
750
+ readonly index: 1;
751
+ readonly name: ".y";
752
+ };
753
+ };
754
+ readonly '.f': {
755
+ readonly index: 2;
756
+ readonly name: ".f";
757
+ };
758
+ readonly ignore: [".progress"];
759
+ readonly returnArg: ".x";
760
+ };
761
+ }, {
762
+ readonly type: "function";
763
+ readonly names: [Identifier];
764
+ readonly processor: BuiltInProcName.PurrrFormula;
765
+ readonly config: {
766
+ readonly args: {
767
+ readonly '.x': {
768
+ readonly index: 0;
769
+ readonly name: ".x";
770
+ };
771
+ };
772
+ readonly '.f': {
773
+ readonly index: 1;
774
+ readonly name: ".f";
775
+ };
776
+ readonly ignore: [".progress", ".ptype"];
777
+ };
778
+ }, {
779
+ readonly type: "function";
780
+ readonly names: [Identifier];
781
+ readonly processor: BuiltInProcName.PurrrFormula;
782
+ readonly config: {
783
+ readonly args: {
784
+ readonly '.l': {
785
+ readonly index: 0;
786
+ readonly name: ".l";
787
+ };
788
+ };
789
+ readonly '.f': {
790
+ readonly index: 1;
791
+ readonly name: ".f";
792
+ };
793
+ readonly ignore: [".progress", ".ptype"];
794
+ };
795
+ }, {
796
+ readonly type: "function";
797
+ readonly names: [Identifier, Identifier];
798
+ readonly processor: BuiltInProcName.PurrrFormula;
799
+ readonly config: {
800
+ readonly args: {
801
+ readonly '.x': {
802
+ readonly index: 0;
803
+ readonly name: ".x";
804
+ };
805
+ readonly '.depth': {
806
+ readonly index: 2;
807
+ readonly name: ".depth";
808
+ };
809
+ };
810
+ readonly '.f': {
811
+ readonly index: 2;
812
+ readonly name: ".f";
813
+ };
814
+ readonly ignore: [".ragged", ".is_node"];
815
+ };
816
+ }, {
817
+ readonly type: "function";
818
+ readonly names: [Identifier];
819
+ readonly processor: BuiltInProcName.PurrrFormula;
820
+ readonly config: {
821
+ readonly args: {
822
+ readonly '.x': {
823
+ readonly index: 0;
824
+ readonly name: ".x";
825
+ };
826
+ readonly '.y': {
827
+ readonly index: 1;
828
+ readonly name: ".y";
829
+ };
830
+ };
831
+ readonly '.f': {
832
+ readonly index: 2;
833
+ readonly name: ".f";
834
+ };
835
+ readonly ignore: [".progress", ".ptype"];
836
+ };
837
+ }, {
838
+ readonly type: "function";
839
+ readonly names: [Identifier];
840
+ readonly processor: BuiltInProcName.PurrrFormula;
841
+ readonly config: {
842
+ readonly args: {
843
+ readonly '.x': {
844
+ readonly index: 0;
845
+ readonly name: ".cols";
846
+ };
847
+ };
848
+ readonly '.f': {
849
+ readonly index: 1;
850
+ readonly name: ".fns";
851
+ };
852
+ readonly ignore: [".names", ".unpack"];
853
+ };
854
+ }, {
855
+ readonly type: "function";
856
+ readonly names: [Identifier, Identifier];
857
+ readonly processor: BuiltInProcName.PurrrFormula;
858
+ readonly config: {
859
+ readonly args: {
860
+ readonly '.x': {
861
+ readonly index: 0;
862
+ readonly name: ".data";
863
+ };
864
+ };
865
+ readonly '.f': {
866
+ readonly index: 1;
867
+ readonly name: "...";
868
+ };
869
+ readonly ignore: [".by", ".preserve"];
870
+ };
871
+ }, {
872
+ readonly type: "function";
873
+ readonly names: [Identifier];
874
+ readonly processor: BuiltInProcName.PurrrFormula;
875
+ readonly config: {
876
+ readonly args: {
877
+ readonly '.x': {
878
+ readonly index: 0;
879
+ readonly name: ".data";
880
+ };
881
+ };
882
+ readonly '.f': {
883
+ readonly index: 1;
884
+ readonly name: ".fn";
885
+ };
886
+ readonly ignore: [".cols"];
887
+ };
489
888
  }, {
490
889
  readonly type: "function";
491
890
  readonly names: ["function", "\\"];
@@ -494,12 +893,40 @@ export declare const DefaultBuiltinConfig: [{
494
893
  readonly assumePrimitive: true;
495
894
  }, {
496
895
  readonly type: "function";
497
- readonly names: ["quote", "substitute", "bquote"];
896
+ readonly names: ["quote", "bquote"];
897
+ readonly processor: BuiltInProcName.Quote;
898
+ readonly config: {
899
+ readonly quoteArgumentsWithIndex: 0;
900
+ };
901
+ readonly assumePrimitive: true;
902
+ }, {
903
+ readonly type: "function";
904
+ readonly names: ["substitute"];
905
+ readonly processor: BuiltInProcName.Quote;
906
+ readonly config: {
907
+ readonly quoteArgumentsWithIndex: 0;
908
+ readonly envArgIndex: 1;
909
+ };
910
+ readonly assumePrimitive: true;
911
+ }, {
912
+ readonly type: "function";
913
+ readonly names: [Identifier, Identifier, Identifier, Identifier, Identifier, Identifier, Identifier, Identifier, Identifier, Identifier, Identifier, Identifier, Identifier, Identifier];
498
914
  readonly processor: BuiltInProcName.Quote;
499
915
  readonly config: {
500
916
  readonly quoteArgumentsWithIndex: 0;
917
+ readonly libFn: true;
501
918
  };
502
919
  readonly assumePrimitive: true;
920
+ }, {
921
+ readonly type: "function";
922
+ readonly names: [Identifier, Identifier, Identifier, Identifier];
923
+ readonly processor: BuiltInProcName.Default;
924
+ readonly config: {
925
+ readonly libFn: true;
926
+ readonly hasUnknownSideEffects: true;
927
+ readonly unquoteFunction: true;
928
+ };
929
+ readonly assumePrimitive: false;
503
930
  }, {
504
931
  readonly type: "function";
505
932
  readonly names: ["local"];
@@ -638,6 +1065,15 @@ export declare const DefaultBuiltinConfig: [{
638
1065
  readonly libFn: true;
639
1066
  };
640
1067
  readonly assumePrimitive: false;
1068
+ }, {
1069
+ readonly type: "function";
1070
+ readonly names: ["sys.function"];
1071
+ readonly processor: BuiltInProcName.Recall;
1072
+ readonly config: {
1073
+ readonly libFn: true;
1074
+ readonly unknownOnNonZeroArg: true;
1075
+ };
1076
+ readonly assumePrimitive: false;
641
1077
  }, {
642
1078
  readonly type: "function";
643
1079
  readonly names: ["c"];
@@ -657,7 +1093,7 @@ export declare const DefaultBuiltinConfig: [{
657
1093
  };
658
1094
  }, {
659
1095
  readonly type: "function";
660
- readonly names: ["sys.on.exit", "par", "tpar", "sink", "requireNamespace", "loadNamespace", "attachNamespace", "asNamespace", "attach", "unname", "data", "dir.create", "dir_create", "Sys.chmod", "unlink", "file.remove", "file.rename", "file.copy", "file.link", "file.append", "Sys.junction"];
1096
+ readonly names: ["sys.on.exit", "par", "tpar", "sink", "requireNamespace", "loadNamespace", "attachNamespace", "asNamespace", Identifier, "attach", "unname", "data", "dir.create", "dir_create", "Sys.chmod", "unlink", "file.remove", "file.rename", "file.copy", "file.link", "file.append", "Sys.junction"];
661
1097
  readonly processor: BuiltInProcName.Default;
662
1098
  readonly config: {
663
1099
  readonly hasUnknownSideEffects: true;
@@ -665,7 +1101,7 @@ export declare const DefaultBuiltinConfig: [{
665
1101
  readonly assumePrimitive: false;
666
1102
  }, {
667
1103
  readonly type: "function";
668
- readonly names: ["tinytheme", "theme_set", "library.dynam", "install.packages", "install", "install_github", "install_gitlab", "install_bitbucket", "install_url", "install_git", "install_svn", "install_local", "install_version", "update_packages"];
1104
+ readonly names: ["tinytheme", "theme_set", Identifier, "library.dynam", "install.packages", "install", "install_github", "install_gitlab", "install_bitbucket", "install_url", "install_git", "install_svn", "install_local", "install_version", "update_packages"];
669
1105
  readonly processor: BuiltInProcName.Default;
670
1106
  readonly config: {
671
1107
  readonly hasUnknownSideEffects: true;