@eagleoutice/flowr 2.10.1 → 2.10.3
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.
- package/README.md +31 -20
- package/abstract-interpretation/absint-visitor.d.ts +13 -8
- package/abstract-interpretation/absint-visitor.js +35 -26
- package/abstract-interpretation/data-frame/dataframe-domain.d.ts +1 -2
- package/abstract-interpretation/data-frame/dataframe-domain.js +14 -15
- package/abstract-interpretation/data-frame/mappers/access-mapper.js +2 -15
- package/abstract-interpretation/data-frame/mappers/arguments.d.ts +11 -17
- package/abstract-interpretation/data-frame/mappers/arguments.js +18 -18
- package/abstract-interpretation/data-frame/mappers/function-mapper.d.ts +41 -15
- package/abstract-interpretation/data-frame/mappers/function-mapper.js +74 -48
- package/abstract-interpretation/data-frame/mappers/replacement-mapper.js +2 -1
- package/abstract-interpretation/data-frame/semantics.d.ts +1 -1
- package/abstract-interpretation/data-frame/semantics.js +31 -35
- package/abstract-interpretation/data-frame/shape-inference.js +1 -1
- package/abstract-interpretation/domains/interval-domain.d.ts +1 -0
- package/abstract-interpretation/domains/interval-domain.js +3 -0
- package/abstract-interpretation/domains/product-domain.d.ts +9 -0
- package/abstract-interpretation/domains/product-domain.js +26 -6
- package/abstract-interpretation/domains/state-abstract-domain.d.ts +36 -22
- package/abstract-interpretation/domains/state-abstract-domain.js +169 -62
- package/abstract-interpretation/unsupported-functions.d.ts +10 -0
- package/abstract-interpretation/unsupported-functions.js +45 -0
- package/benchmark/slicer.js +10 -13
- package/cli/flowr.js +1 -1
- package/control-flow/control-flow-graph.js +13 -9
- package/control-flow/semantic-cfg-guided-visitor.d.ts +6 -0
- package/control-flow/semantic-cfg-guided-visitor.js +6 -0
- package/dataflow/environments/built-in-proc-name.d.ts +6 -0
- package/dataflow/environments/built-in-proc-name.js +6 -0
- package/dataflow/environments/built-in.d.ts +7 -5
- package/dataflow/environments/built-in.js +2 -0
- package/dataflow/environments/default-builtin-config.d.ts +442 -6
- package/dataflow/environments/default-builtin-config.js +158 -3
- package/dataflow/environments/overwrite.js +2 -5
- package/dataflow/graph/df-helper.d.ts +14 -4
- package/dataflow/graph/df-helper.js +36 -6
- package/dataflow/graph/graph.d.ts +10 -0
- package/dataflow/graph/graph.js +12 -0
- package/dataflow/instrument/instrument-dataflow-count.d.ts +10 -0
- package/dataflow/instrument/instrument-dataflow-count.js +10 -0
- package/dataflow/internal/process/functions/call/argument/unpack-argument.d.ts +4 -4
- package/dataflow/internal/process/functions/call/built-in/built-in-access.d.ts +3 -3
- package/dataflow/internal/process/functions/call/built-in/built-in-apply.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-assignment.d.ts +3 -3
- package/dataflow/internal/process/functions/call/built-in/built-in-eval.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-expression-list.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-for-loop.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-function-definition.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-function-definition.js +6 -17
- package/dataflow/internal/process/functions/call/built-in/built-in-get.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-if-then-else.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-library.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-list.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-local.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-pipe.d.ts +23 -3
- package/dataflow/internal/process/functions/call/built-in/built-in-pipe.js +80 -12
- package/dataflow/internal/process/functions/call/built-in/built-in-purrr-formula.d.ts +41 -0
- package/dataflow/internal/process/functions/call/built-in/built-in-purrr-formula.js +179 -0
- package/dataflow/internal/process/functions/call/built-in/built-in-quote.d.ts +7 -4
- package/dataflow/internal/process/functions/call/built-in/built-in-quote.js +62 -1
- package/dataflow/internal/process/functions/call/built-in/built-in-recall.d.ts +7 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-recall.js +15 -1
- package/dataflow/internal/process/functions/call/built-in/built-in-register-hook.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-repeat-loop.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-replacement.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-rm.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-s-seven-dispatch.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-s-seven-new-generic.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-s-three-dispatch.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-source.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-special-bin-op.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-stop-if-not.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-try-catch.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-vector.d.ts +2 -2
- package/dataflow/internal/process/functions/call/built-in/built-in-while-loop.d.ts +2 -2
- package/dataflow/internal/process/functions/call/common.d.ts +2 -2
- package/dataflow/internal/process/functions/call/common.js +4 -3
- package/dataflow/internal/process/functions/call/known-call-handling.d.ts +2 -2
- package/dataflow/internal/process/functions/call/named-call-handling.d.ts +2 -2
- package/documentation/wiki-absint.js +6 -5
- package/documentation/wiki-analyzer.js +0 -2
- package/documentation/wiki-cfg.js +3 -3
- package/documentation/wiki-linter.js +1 -0
- package/documentation/wiki-normalized-ast.js +7 -7
- package/documentation/wiki-query.js +29 -0
- package/linter/linter-rules.d.ts +24 -1
- package/linter/linter-rules.js +3 -1
- package/linter/rules/dataframe-access-validation.d.ts +1 -1
- package/linter/rules/dataframe-access-validation.js +3 -4
- package/linter/rules/roxygen-arguments.d.ts +35 -0
- package/linter/rules/roxygen-arguments.js +100 -0
- package/package.json +4 -5
- package/project/context/flowr-analyzer-context.d.ts +1 -8
- package/project/context/flowr-analyzer-context.js +1 -7
- package/project/context/flowr-analyzer-environment-context.d.ts +5 -0
- package/project/context/flowr-analyzer-environment-context.js +6 -0
- package/project/context/flowr-analyzer-files-context.d.ts +6 -0
- package/project/context/flowr-analyzer-files-context.js +4 -2
- package/project/flowr-analyzer-builder.js +1 -4
- package/queries/catalog/call-context-query/call-context-query-executor.d.ts +1 -1
- package/queries/catalog/call-context-query/call-context-query-executor.js +10 -5
- package/queries/catalog/call-context-query/call-context-query-format.d.ts +1 -1
- package/queries/catalog/dependencies-query/function-info/library-functions.js +2 -0
- package/queries/catalog/dependencies-query/function-info/write-functions.js +1 -1
- package/queries/catalog/df-shape-query/df-shape-query-format.js +7 -2
- package/queries/catalog/files-query/files-query-executor.js +0 -1
- package/queries/catalog/input-sources-query/simple-input-classifier.d.ts +2 -0
- package/queries/catalog/input-sources-query/simple-input-classifier.js +5 -3
- package/r-bridge/data/data.d.ts +2 -2
- package/r-bridge/data/data.js +2 -2
- package/r-bridge/lang-4.x/ast/model/nodes/r-argument.d.ts +13 -5
- package/r-bridge/lang-4.x/ast/model/nodes/r-argument.js +14 -2
- package/r-bridge/lang-4.x/ast/model/nodes/r-function-call.d.ts +3 -3
- package/r-bridge/lang-4.x/ast/model/nodes/r-pipe.d.ts +9 -0
- package/r-bridge/lang-4.x/ast/model/nodes/r-pipe.js +13 -0
- package/r-bridge/lang-4.x/ast/model/versions.d.ts +2 -0
- package/r-bridge/lang-4.x/ast/model/versions.js +3 -1
- package/r-bridge/lang-4.x/tree-sitter/tree-sitter-executor.d.ts +1 -1
- package/r-bridge/lang-4.x/tree-sitter/tree-sitter-executor.js +1 -1
- package/r-bridge/roxygen2/documentation-provider.js +15 -6
- package/r-bridge/roxygen2/roxygen-ast.d.ts +3 -1
- package/search/flowr-search-builder.js +3 -2
- package/util/mermaid/ast.js +2 -1
- package/util/record.d.ts +23 -0
- package/util/record.js +33 -0
- package/util/version.js +1 -1
- package/abstract-interpretation/domains/mapped-abstract-domain.d.ts +0 -41
- 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", "
|
|
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;
|