@eagleoutice/flowr 2.7.5 → 2.8.0
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 +68 -65
- package/cli/wiki.js +1 -1
- package/control-flow/extract-cfg.js +3 -3
- package/control-flow/useless-loop.d.ts +1 -1
- package/control-flow/useless-loop.js +2 -2
- package/dataflow/cluster.js +3 -3
- package/dataflow/environments/built-in-config.d.ts +8 -4
- package/dataflow/environments/built-in.d.ts +27 -14
- package/dataflow/environments/built-in.js +27 -12
- package/dataflow/environments/default-builtin-config.d.ts +614 -3
- package/dataflow/environments/default-builtin-config.js +50 -15
- package/dataflow/environments/environment.js +3 -2
- package/dataflow/environments/identifier.d.ts +5 -1
- package/dataflow/environments/reference-to-maybe.d.ts +2 -2
- package/dataflow/environments/reference-to-maybe.js +23 -14
- package/dataflow/environments/resolve-by-name.d.ts +6 -2
- package/dataflow/environments/resolve-by-name.js +5 -1
- package/dataflow/environments/scoping.js +1 -3
- package/dataflow/eval/resolve/alias-tracking.js +5 -1
- package/dataflow/extractor.js +3 -3
- package/dataflow/fn/exceptions-of-function.d.ts +13 -0
- package/dataflow/fn/exceptions-of-function.js +47 -0
- package/dataflow/fn/higher-order-function.d.ts +1 -1
- package/dataflow/fn/higher-order-function.js +3 -3
- package/dataflow/fn/recursive-function.d.ts +6 -0
- package/dataflow/fn/recursive-function.js +32 -0
- package/dataflow/graph/call-graph.d.ts +10 -0
- package/dataflow/graph/call-graph.js +209 -0
- package/dataflow/graph/dataflowgraph-builder.d.ts +7 -2
- package/dataflow/graph/dataflowgraph-builder.js +14 -9
- package/dataflow/graph/diff-dataflow-graph.js +96 -2
- package/dataflow/graph/graph.d.ts +10 -7
- package/dataflow/graph/graph.js +7 -8
- package/dataflow/graph/vertex.d.ts +6 -3
- package/dataflow/hooks.d.ts +30 -0
- package/dataflow/hooks.js +38 -0
- package/dataflow/info.d.ts +28 -5
- package/dataflow/info.js +66 -31
- package/dataflow/internal/linker.d.ts +13 -3
- package/dataflow/internal/linker.js +155 -53
- package/dataflow/internal/process/functions/call/argument/unpack-argument.d.ts +4 -0
- package/dataflow/internal/process/functions/call/argument/unpack-argument.js +7 -0
- package/dataflow/internal/process/functions/call/built-in/built-in-apply.d.ts +1 -1
- package/dataflow/internal/process/functions/call/built-in/built-in-apply.js +19 -3
- package/dataflow/internal/process/functions/call/built-in/built-in-assignment.d.ts +14 -0
- package/dataflow/internal/process/functions/call/built-in/built-in-assignment.js +30 -0
- package/dataflow/internal/process/functions/call/built-in/built-in-eval.js +2 -1
- package/dataflow/internal/process/functions/call/built-in/built-in-expression-list.js +24 -17
- package/dataflow/internal/process/functions/call/built-in/built-in-for-loop.js +2 -1
- package/dataflow/internal/process/functions/call/built-in/built-in-function-definition.d.ts +5 -1
- package/dataflow/internal/process/functions/call/built-in/built-in-function-definition.js +59 -21
- package/dataflow/internal/process/functions/call/built-in/built-in-if-then-else.js +4 -3
- package/dataflow/internal/process/functions/call/built-in/built-in-register-hook.d.ts +34 -0
- package/dataflow/internal/process/functions/call/built-in/built-in-register-hook.js +92 -0
- package/dataflow/internal/process/functions/call/built-in/built-in-repeat-loop.js +1 -0
- package/dataflow/internal/process/functions/call/built-in/built-in-stop-if-not.d.ts +21 -0
- package/dataflow/internal/process/functions/call/built-in/built-in-stop-if-not.js +129 -0
- package/dataflow/internal/process/functions/call/built-in/built-in-try-catch.d.ts +16 -0
- package/dataflow/internal/process/functions/call/built-in/built-in-try-catch.js +127 -0
- package/dataflow/internal/process/functions/call/built-in/built-in-while-loop.js +5 -3
- package/dataflow/internal/process/functions/call/common.d.ts +13 -1
- package/dataflow/internal/process/functions/call/common.js +33 -2
- package/dataflow/internal/process/functions/call/known-call-handling.d.ts +13 -1
- package/dataflow/internal/process/functions/call/known-call-handling.js +29 -3
- package/dataflow/internal/process/functions/call/named-call-handling.js +2 -1
- package/dataflow/internal/process/functions/call/unnamed-call-handling.js +6 -4
- package/dataflow/internal/process/functions/process-argument.js +7 -6
- package/dataflow/internal/process/functions/process-parameter.js +2 -1
- package/dataflow/internal/process/process-named-call.d.ts +2 -2
- package/dataflow/internal/process/process-symbol.js +3 -2
- package/dataflow/internal/process/process-value.d.ts +3 -2
- package/dataflow/internal/process/process-value.js +8 -6
- package/dataflow/origin/dfg-get-origin.js +2 -1
- package/dataflow/origin/dfg-get-symbol-refs.js +1 -1
- package/documentation/doc-readme.d.ts +1 -1
- package/documentation/doc-readme.js +6 -6
- package/documentation/doc-util/doc-code.js +1 -1
- package/documentation/doc-util/doc-dfg.d.ts +1 -0
- package/documentation/doc-util/doc-dfg.js +7 -4
- package/documentation/doc-util/doc-query.d.ts +1 -0
- package/documentation/doc-util/doc-query.js +1 -1
- package/documentation/doc-util/doc-repl.d.ts +2 -1
- package/documentation/doc-util/doc-repl.js +11 -3
- package/documentation/wiki-analyzer.js +2 -0
- package/documentation/wiki-dataflow-graph.js +59 -16
- package/documentation/wiki-interface.js +33 -5
- package/documentation/wiki-mk/doc-context.d.ts +2 -1
- package/documentation/wiki-mk/doc-context.js +2 -2
- package/documentation/wiki-mk/doc-maker.js +4 -3
- package/documentation/wiki-normalized-ast.js +6 -0
- package/documentation/wiki-query.js +109 -1
- package/linter/linter-rules.d.ts +1 -1
- package/linter/rules/seeded-randomness.js +17 -12
- package/linter/rules/useless-loop.d.ts +1 -1
- package/package.json +9 -11
- package/project/cache/flowr-analyzer-cache.d.ts +11 -0
- package/project/cache/flowr-analyzer-cache.js +19 -0
- package/project/context/flowr-analyzer-dependencies-context.d.ts +6 -1
- package/project/context/flowr-analyzer-dependencies-context.js +6 -0
- package/project/context/flowr-analyzer-files-context.d.ts +5 -2
- package/project/context/flowr-analyzer-files-context.js +24 -17
- package/project/context/flowr-file.d.ts +9 -4
- package/project/context/flowr-file.js +20 -6
- package/project/flowr-analyzer.d.ts +11 -0
- package/project/flowr-analyzer.js +6 -0
- package/project/plugins/file-plugins/files/flowr-description-file.d.ts +11 -3
- package/project/plugins/file-plugins/files/flowr-description-file.js +38 -28
- package/project/plugins/file-plugins/files/flowr-jupyter-file.js +1 -1
- package/project/plugins/file-plugins/files/flowr-namespace-file.js +1 -1
- package/project/plugins/file-plugins/files/flowr-news-file.js +1 -1
- package/project/plugins/file-plugins/files/flowr-rmarkdown-file.js +1 -1
- package/project/plugins/file-plugins/flowr-analyzer-description-file-plugin.js +1 -1
- package/project/plugins/file-plugins/flowr-analyzer-file-plugin.d.ts +4 -1
- package/project/plugins/file-plugins/flowr-analyzer-file-plugin.js +3 -0
- package/project/plugins/file-plugins/{flowr-analyzer-namespace-file-plugin.d.ts → flowr-analyzer-namespace-files-plugin.d.ts} +1 -1
- package/project/plugins/file-plugins/{flowr-analyzer-namespace-file-plugin.js → flowr-analyzer-namespace-files-plugin.js} +4 -4
- package/project/plugins/file-plugins/flowr-analyzer-test-file-plugin.d.ts +26 -0
- package/project/plugins/file-plugins/flowr-analyzer-test-file-plugin.js +39 -0
- package/project/plugins/file-plugins/flowr-analyzer-vignette-file-plugin.d.ts +26 -0
- package/project/plugins/file-plugins/flowr-analyzer-vignette-file-plugin.js +39 -0
- package/project/plugins/flowr-analyzer-plugin-defaults.js +6 -2
- package/project/plugins/package-version-plugins/flowr-analyzer-package-versions-description-file-plugin.js +3 -13
- package/project/plugins/package-version-plugins/package.d.ts +1 -1
- package/project/plugins/package-version-plugins/package.js +3 -3
- package/project/plugins/plugin-registry.d.ts +4 -2
- package/project/plugins/plugin-registry.js +6 -2
- package/project/plugins/project-discovery/flowr-analyzer-project-discovery-plugin.d.ts +11 -0
- package/project/plugins/project-discovery/flowr-analyzer-project-discovery-plugin.js +5 -2
- package/queries/catalog/call-context-query/call-context-query-format.d.ts +4 -12
- package/queries/catalog/call-graph-query/call-graph-query-executor.d.ts +6 -0
- package/queries/catalog/call-graph-query/call-graph-query-executor.js +21 -0
- package/queries/catalog/call-graph-query/call-graph-query-format.d.ts +21 -0
- package/queries/catalog/call-graph-query/call-graph-query-format.js +32 -0
- package/queries/catalog/dataflow-query/dataflow-query-executor.js +4 -3
- package/queries/catalog/dependencies-query/dependencies-query-executor.js +29 -3
- package/queries/catalog/dependencies-query/dependencies-query-format.d.ts +1 -0
- package/queries/catalog/dependencies-query/function-info/function-info.d.ts +8 -1
- package/queries/catalog/dependencies-query/function-info/write-functions.js +13 -0
- package/queries/catalog/does-call-query/does-call-query-executor.d.ts +6 -0
- package/queries/catalog/does-call-query/does-call-query-executor.js +100 -0
- package/queries/catalog/does-call-query/does-call-query-format.d.ts +51 -0
- package/queries/catalog/does-call-query/does-call-query-format.js +102 -0
- package/queries/catalog/files-query/files-query-executor.js +4 -4
- package/queries/catalog/files-query/files-query-format.d.ts +2 -1
- package/queries/catalog/files-query/files-query-format.js +18 -2
- package/queries/catalog/id-map-query/id-map-query-executor.js +4 -3
- package/queries/catalog/inspect-exceptions-query/inspect-exception-query-executor.d.ts +18 -0
- package/queries/catalog/inspect-exceptions-query/inspect-exception-query-executor.js +56 -0
- package/queries/catalog/inspect-exceptions-query/inspect-exception-query-format.d.ts +34 -0
- package/queries/catalog/inspect-exceptions-query/inspect-exception-query-format.js +54 -0
- package/queries/catalog/inspect-higher-order-query/inspect-higher-order-query-executor.js +3 -28
- package/queries/catalog/inspect-higher-order-query/inspect-higher-order-query-format.d.ts +6 -0
- package/queries/catalog/inspect-higher-order-query/inspect-higher-order-query-format.js +12 -0
- package/queries/catalog/inspect-recursion-query/inspect-recursion-query-executor.d.ts +6 -0
- package/queries/catalog/inspect-recursion-query/inspect-recursion-query-executor.js +23 -0
- package/queries/catalog/inspect-recursion-query/inspect-recursion-query-format.d.ts +28 -0
- package/queries/catalog/inspect-recursion-query/inspect-recursion-query-format.js +44 -0
- package/queries/catalog/linter-query/linter-query-format.js +4 -1
- package/queries/catalog/location-map-query/location-map-query-executor.js +1 -1
- package/queries/catalog/normalized-ast-query/normalized-ast-query-executor.js +4 -3
- package/queries/catalog/project-query/project-query-executor.js +9 -3
- package/queries/catalog/project-query/project-query-format.d.ts +8 -3
- package/queries/catalog/project-query/project-query-format.js +35 -9
- package/queries/query.d.ts +34 -2
- package/queries/query.js +9 -0
- package/r-bridge/data/data.d.ts +10 -5
- package/r-bridge/data/data.js +11 -5
- package/r-bridge/lang-4.x/ast/model/model.d.ts +7 -7
- package/r-bridge/lang-4.x/ast/model/nodes/r-access.d.ts +2 -2
- package/r-bridge/lang-4.x/ast/model/nodes/r-argument.d.ts +2 -2
- package/r-bridge/lang-4.x/ast/model/nodes/r-binary-op.d.ts +2 -2
- package/r-bridge/lang-4.x/ast/model/nodes/r-comment.d.ts +5 -2
- package/r-bridge/lang-4.x/ast/model/nodes/r-comment.js +8 -0
- package/r-bridge/lang-4.x/ast/model/nodes/r-expression-list.d.ts +2 -2
- package/r-bridge/lang-4.x/ast/model/nodes/r-for-loop.d.ts +2 -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-function-definition.d.ts +2 -2
- package/r-bridge/lang-4.x/ast/model/nodes/r-if-then-else.d.ts +2 -2
- package/r-bridge/lang-4.x/ast/model/nodes/r-parameter.d.ts +2 -2
- package/r-bridge/lang-4.x/ast/model/nodes/r-pipe.d.ts +2 -2
- package/r-bridge/lang-4.x/ast/model/nodes/r-repeat-loop.d.ts +2 -2
- package/r-bridge/lang-4.x/ast/model/nodes/r-unary-op.d.ts +2 -2
- package/r-bridge/lang-4.x/ast/model/nodes/r-while-loop.d.ts +2 -2
- package/r-bridge/lang-4.x/ast/parser/main/internal/other/normalize-comment.js +0 -1
- package/r-bridge/lang-4.x/tree-sitter/tree-sitter-normalize.js +0 -2
- package/r-bridge/roxygen2/roxygen-ast.d.ts +218 -0
- package/r-bridge/roxygen2/roxygen-ast.js +82 -0
- package/r-bridge/roxygen2/roxygen-parse.d.ts +24 -0
- package/r-bridge/roxygen2/roxygen-parse.js +214 -0
- package/reconstruct/auto-select/magic-comments.js +4 -4
- package/slicing/static/slice-call.js +3 -4
- package/slicing/static/static-slicer.js +2 -2
- package/statistics/features/supported/defined-functions/defined-functions.js +1 -1
- package/util/collections/defaultmap.d.ts +3 -3
- package/util/mermaid/dfg.js +5 -5
- package/util/objects.js +1 -1
- package/util/r-author.d.ts +5 -0
- package/util/r-author.js +110 -0
- package/util/r-license.d.ts +32 -0
- package/util/r-license.js +217 -0
- package/util/r-version.d.ts +19 -0
- package/util/r-version.js +106 -0
- package/util/range.d.ts +6 -0
- package/util/range.js +7 -0
- package/util/simple-df/dfg-ascii.js +2 -2
- package/util/text/args.d.ts +9 -0
- package/util/text/args.js +65 -0
- package/util/version.js +1 -1
|
@@ -1,5 +1,10 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { ExitPointType } from '../info';
|
|
2
|
+
import type { DataflowGraph } from '../graph/graph';
|
|
3
|
+
import type { DataflowGraphVertexFunctionCall } from '../graph/vertex';
|
|
4
|
+
import type { NodeId } from '../../r-bridge/lang-4.x/ast/model/processing/node-id';
|
|
5
|
+
import { CascadeAction } from '../../queries/catalog/call-context-query/cascade-action';
|
|
2
6
|
import type { BuiltInMappingName } from './built-in';
|
|
7
|
+
import { KnownHooks } from '../hooks';
|
|
3
8
|
export declare const GgPlotCreate: readonly ["ggplot", "ggplotly", "ggMarginal", "ggcorrplot", "ggseasonplot", "ggdendrogram", "qmap", "qplot", "quickplot", "autoplot", "grid.arrange", "fviz_pca_biplot", "fviz_pca", "fviz_pca_ind", "fviz_pca_var", "fviz_screeplot", "fviz_mca_biplot", "fviz_mca", "fviz_mca_ind", "fviz_mca_var", "fviz_cluster", "fviz_dend", "ggsurvplot"];
|
|
4
9
|
export declare const TinyPlotCrate: readonly ["tinyplot", "plt"];
|
|
5
10
|
export declare const GraphicsPlotCreate: string[];
|
|
@@ -12,8 +17,614 @@ export declare const GgPlotAddons: string[];
|
|
|
12
17
|
/**
|
|
13
18
|
* Contains the built-in definitions recognized by flowR
|
|
14
19
|
*/
|
|
15
|
-
export declare const DefaultBuiltinConfig:
|
|
20
|
+
export declare const DefaultBuiltinConfig: [{
|
|
21
|
+
readonly type: "constant";
|
|
22
|
+
readonly names: ["NULL", "NA", "NaN", "NA_integer_", "NA_real_", "NA_complex_", "NA_character_"];
|
|
23
|
+
readonly value: null;
|
|
24
|
+
readonly assumePrimitive: true;
|
|
25
|
+
}, {
|
|
26
|
+
readonly type: "constant";
|
|
27
|
+
readonly names: ["TRUE", "T"];
|
|
28
|
+
readonly value: true;
|
|
29
|
+
readonly assumePrimitive: true;
|
|
30
|
+
}, {
|
|
31
|
+
readonly type: "constant";
|
|
32
|
+
readonly names: ["FALSE", "F"];
|
|
33
|
+
readonly value: false;
|
|
34
|
+
readonly assumePrimitive: true;
|
|
35
|
+
}, {
|
|
36
|
+
readonly type: "function";
|
|
37
|
+
readonly names: ["~", "+", "-", "*", "/", "^", "!", "?", "**", "==", "!=", ">", "<", ">=", "<=", "%%", "%/%", "%*%", "%in%", ":", "rep", "seq", "seq_len", "seq_along", "seq.int", "gsub", "which", "class", "dimnames", "min", "max", "intersect", "subset", "match", "sqrt", "abs", "round", "floor", "ceiling", "signif", "trunc", "log", "log10", "log2", "sum", "mean", "unique", "paste", "paste0", "read.csv", "is.null", "numeric", "as.character", "as.integer", "as.logical", "as.numeric", "as.matrix", "rbind", "nrow", "ncol", "tryCatch", "expression", "factor", "missing", "as.data.frame", "data.frame", "na.omit", "rownames", "names", "order", "length", "any", "dim", "matrix", "cbind", "nchar", "pdf", "jpeg", "png", "windows", "postscript", "xfig", "bitmap", "pictex", "cairo_pdf", "svg", "bmp", "tiff", "X11", "quartz", "jitter"];
|
|
38
|
+
readonly processor: "builtin:default";
|
|
39
|
+
readonly config: {
|
|
40
|
+
readonly readAllArguments: true;
|
|
41
|
+
};
|
|
42
|
+
readonly assumePrimitive: true;
|
|
43
|
+
}, {
|
|
44
|
+
readonly type: "function";
|
|
45
|
+
readonly names: ["t", "aperm"];
|
|
46
|
+
readonly processor: "builtin:default";
|
|
47
|
+
readonly config: {
|
|
48
|
+
readonly readAllArguments: true;
|
|
49
|
+
};
|
|
50
|
+
readonly assumePrimitive: false;
|
|
51
|
+
}, {
|
|
52
|
+
readonly type: "function";
|
|
53
|
+
readonly names: ["rm"];
|
|
54
|
+
readonly processor: "builtin:rm";
|
|
55
|
+
readonly config: {};
|
|
56
|
+
readonly assumePrimitive: true;
|
|
57
|
+
}, {
|
|
58
|
+
readonly type: "function";
|
|
59
|
+
readonly names: ["options"];
|
|
60
|
+
readonly processor: "builtin:default";
|
|
61
|
+
readonly config: {
|
|
62
|
+
readonly hasUnknownSideEffects: true;
|
|
63
|
+
readonly forceArgs: "all";
|
|
64
|
+
};
|
|
65
|
+
readonly assumePrimitive: false;
|
|
66
|
+
}, {
|
|
67
|
+
readonly type: "function";
|
|
68
|
+
readonly names: ["mapply", "Mapply"];
|
|
69
|
+
readonly processor: "builtin:apply";
|
|
70
|
+
readonly config: {
|
|
71
|
+
readonly indexOfFunction: 0;
|
|
72
|
+
readonly nameOfFunctionArgument: "FUN";
|
|
73
|
+
};
|
|
74
|
+
readonly assumePrimitive: false;
|
|
75
|
+
}, {
|
|
76
|
+
readonly type: "function";
|
|
77
|
+
readonly names: ["lapply", "sapply", "vapply"];
|
|
78
|
+
readonly processor: "builtin:apply";
|
|
79
|
+
readonly config: {
|
|
80
|
+
readonly indexOfFunction: 1;
|
|
81
|
+
readonly nameOfFunctionArgument: "FUN";
|
|
82
|
+
};
|
|
83
|
+
readonly assumePrimitive: false;
|
|
84
|
+
}, {
|
|
85
|
+
readonly type: "function";
|
|
86
|
+
readonly names: ["Lapply", "Sapply", "Vapply"];
|
|
87
|
+
readonly processor: "builtin:apply";
|
|
88
|
+
readonly config: {
|
|
89
|
+
readonly indexOfFunction: 1;
|
|
90
|
+
readonly nameOfFunctionArgument: "FUN";
|
|
91
|
+
};
|
|
92
|
+
readonly assumePrimitive: false;
|
|
93
|
+
}, {
|
|
94
|
+
readonly type: "function";
|
|
95
|
+
readonly names: ["apply", "tapply", "Tapply"];
|
|
96
|
+
readonly processor: "builtin:apply";
|
|
97
|
+
readonly config: {
|
|
98
|
+
readonly indexOfFunction: 2;
|
|
99
|
+
readonly nameOfFunctionArgument: "FUN";
|
|
100
|
+
};
|
|
101
|
+
readonly assumePrimitive: false;
|
|
102
|
+
}, {
|
|
103
|
+
readonly type: "function";
|
|
104
|
+
readonly names: ["print", "message", "warning"];
|
|
105
|
+
readonly processor: "builtin:default";
|
|
106
|
+
readonly config: {
|
|
107
|
+
readonly returnsNthArgument: 0;
|
|
108
|
+
readonly forceArgs: "all";
|
|
109
|
+
readonly hasUnknownSideEffects: {
|
|
110
|
+
readonly type: "link-to-last-call";
|
|
111
|
+
readonly callName: RegExp;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
readonly assumePrimitive: false;
|
|
115
|
+
}, {
|
|
116
|
+
readonly type: "function";
|
|
117
|
+
readonly names: string[];
|
|
118
|
+
readonly processor: "builtin:default";
|
|
119
|
+
readonly config: {
|
|
120
|
+
readonly forceArgs: "all";
|
|
121
|
+
readonly hasUnknownSideEffects: {
|
|
122
|
+
readonly type: "link-to-last-call";
|
|
123
|
+
readonly ignoreIf: (source: DataflowGraphVertexFunctionCall, graph: DataflowGraph) => boolean;
|
|
124
|
+
readonly callName: RegExp;
|
|
125
|
+
};
|
|
126
|
+
};
|
|
127
|
+
readonly assumePrimitive: true;
|
|
128
|
+
}, {
|
|
129
|
+
readonly type: "function";
|
|
130
|
+
readonly names: string[];
|
|
131
|
+
readonly processor: "builtin:default";
|
|
132
|
+
readonly config: {
|
|
133
|
+
readonly forceArgs: "all";
|
|
134
|
+
readonly treatAsFnCall: {
|
|
135
|
+
readonly facet_grid: readonly ["labeller"];
|
|
136
|
+
};
|
|
137
|
+
readonly hasUnknownSideEffects: {
|
|
138
|
+
readonly type: "link-to-last-call";
|
|
139
|
+
readonly callName: RegExp;
|
|
140
|
+
readonly ignoreIf: (source: NodeId, graph: DataflowGraph) => boolean;
|
|
141
|
+
readonly cascadeIf: (target: DataflowGraphVertexFunctionCall, _: NodeId, graph: DataflowGraph) => CascadeAction.Stop | CascadeAction.Continue;
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
readonly assumePrimitive: true;
|
|
145
|
+
}, {
|
|
146
|
+
readonly type: "function";
|
|
147
|
+
readonly names: string[];
|
|
148
|
+
readonly processor: "builtin:default";
|
|
149
|
+
readonly config: {
|
|
150
|
+
readonly libFn: true;
|
|
151
|
+
readonly forceArgs: "all";
|
|
152
|
+
readonly hasUnknownSideEffects: {
|
|
153
|
+
readonly type: "link-to-last-call";
|
|
154
|
+
readonly callName: RegExp;
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
readonly assumePrimitive: true;
|
|
158
|
+
}, {
|
|
159
|
+
readonly type: "function";
|
|
160
|
+
readonly names: string[];
|
|
161
|
+
readonly processor: "builtin:default";
|
|
162
|
+
readonly config: {
|
|
163
|
+
readonly libFn: true;
|
|
164
|
+
readonly forceArgs: "all";
|
|
165
|
+
readonly hasUnknownSideEffects: {
|
|
166
|
+
readonly type: "link-to-last-call";
|
|
167
|
+
readonly callName: RegExp;
|
|
168
|
+
};
|
|
169
|
+
};
|
|
170
|
+
readonly assumePrimitive: true;
|
|
171
|
+
}, {
|
|
172
|
+
readonly type: "function";
|
|
173
|
+
readonly names: ["image_write", "image_capture", "dev.capture", "dev.off"];
|
|
174
|
+
readonly processor: "builtin:default";
|
|
175
|
+
readonly config: {
|
|
176
|
+
readonly libFn: true;
|
|
177
|
+
readonly forceArgs: "all";
|
|
178
|
+
readonly hasUnknownSideEffects: {
|
|
179
|
+
readonly type: "link-to-last-call";
|
|
180
|
+
readonly callName: RegExp;
|
|
181
|
+
};
|
|
182
|
+
};
|
|
183
|
+
readonly assumePrimitive: true;
|
|
184
|
+
}, {
|
|
185
|
+
readonly type: "function";
|
|
186
|
+
readonly names: ["("];
|
|
187
|
+
readonly processor: "builtin:default";
|
|
188
|
+
readonly config: {
|
|
189
|
+
readonly returnsNthArgument: 0;
|
|
190
|
+
};
|
|
191
|
+
readonly assumePrimitive: true;
|
|
192
|
+
}, {
|
|
193
|
+
readonly type: "function";
|
|
194
|
+
readonly names: ["load", "load_all", "setwd", "set.seed"];
|
|
195
|
+
readonly processor: "builtin:default";
|
|
196
|
+
readonly config: {
|
|
197
|
+
readonly hasUnknownSideEffects: true;
|
|
198
|
+
readonly forceArgs: readonly [true];
|
|
199
|
+
};
|
|
200
|
+
readonly assumePrimitive: false;
|
|
201
|
+
}, {
|
|
202
|
+
readonly type: "function";
|
|
203
|
+
readonly names: ["body", "formals", "environment"];
|
|
204
|
+
readonly processor: "builtin:default";
|
|
205
|
+
readonly config: {
|
|
206
|
+
readonly hasUnknownSideEffects: true;
|
|
207
|
+
readonly forceArgs: readonly [true];
|
|
208
|
+
};
|
|
209
|
+
readonly assumePrimitive: true;
|
|
210
|
+
}, {
|
|
211
|
+
readonly type: "function";
|
|
212
|
+
readonly names: [".Call", ".External", ".C", ".Fortran"];
|
|
213
|
+
readonly processor: "builtin:default";
|
|
214
|
+
readonly config: {
|
|
215
|
+
readonly hasUnknownSideEffects: true;
|
|
216
|
+
readonly forceArgs: readonly [true];
|
|
217
|
+
readonly treatAsFnCall: {
|
|
218
|
+
readonly '.Call': readonly [".NAME"];
|
|
219
|
+
readonly '.External': readonly [".NAME"];
|
|
220
|
+
readonly '.C': readonly [".NAME"];
|
|
221
|
+
readonly '.Fortran': readonly [".NAME"];
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
readonly assumePrimitive: true;
|
|
225
|
+
}, {
|
|
226
|
+
readonly type: "function";
|
|
227
|
+
readonly names: ["eval"];
|
|
228
|
+
readonly processor: "builtin:eval";
|
|
229
|
+
readonly config: {
|
|
230
|
+
readonly includeFunctionCall: true;
|
|
231
|
+
};
|
|
232
|
+
readonly assumePrimitive: true;
|
|
233
|
+
}, {
|
|
234
|
+
readonly type: "function";
|
|
235
|
+
readonly names: ["cat"];
|
|
236
|
+
readonly processor: "builtin:default";
|
|
237
|
+
readonly config: {
|
|
238
|
+
readonly forceArgs: "all";
|
|
239
|
+
readonly hasUnknownSideEffects: {
|
|
240
|
+
readonly type: "link-to-last-call";
|
|
241
|
+
readonly callName: RegExp;
|
|
242
|
+
};
|
|
243
|
+
};
|
|
244
|
+
readonly assumePrimitive: false;
|
|
245
|
+
}, {
|
|
246
|
+
readonly type: "function";
|
|
247
|
+
readonly names: ["switch"];
|
|
248
|
+
readonly processor: "builtin:default";
|
|
249
|
+
readonly config: {
|
|
250
|
+
readonly forceArgs: readonly [true];
|
|
251
|
+
};
|
|
252
|
+
readonly assumePrimitive: false;
|
|
253
|
+
}, {
|
|
254
|
+
readonly type: "function";
|
|
255
|
+
readonly names: ["return"];
|
|
256
|
+
readonly processor: "builtin:default";
|
|
257
|
+
readonly config: {
|
|
258
|
+
readonly returnsNthArgument: 0;
|
|
259
|
+
readonly cfg: ExitPointType.Return;
|
|
260
|
+
readonly useAsProcessor: "builtin:return";
|
|
261
|
+
};
|
|
262
|
+
readonly assumePrimitive: true;
|
|
263
|
+
}, {
|
|
264
|
+
readonly type: "function";
|
|
265
|
+
readonly names: ["stop", "abort"];
|
|
266
|
+
readonly processor: "builtin:default";
|
|
267
|
+
readonly config: {
|
|
268
|
+
readonly useAsProcessor: "builtin:stop";
|
|
269
|
+
readonly cfg: ExitPointType.Error;
|
|
270
|
+
readonly forceArgs: readonly ["all"];
|
|
271
|
+
};
|
|
272
|
+
readonly assumePrimitive: false;
|
|
273
|
+
}, {
|
|
274
|
+
readonly type: "function";
|
|
275
|
+
readonly names: ["try"];
|
|
276
|
+
readonly processor: "builtin:try";
|
|
277
|
+
readonly config: {
|
|
278
|
+
readonly block: "expr";
|
|
279
|
+
readonly handlers: {};
|
|
280
|
+
};
|
|
281
|
+
readonly assumePrimitive: true;
|
|
282
|
+
}, {
|
|
283
|
+
readonly type: "function";
|
|
284
|
+
readonly names: ["tryCatch", "tryCatchLog"];
|
|
285
|
+
readonly processor: "builtin:try";
|
|
286
|
+
readonly config: {
|
|
287
|
+
readonly block: "expr";
|
|
288
|
+
readonly handlers: {
|
|
289
|
+
readonly error: "error";
|
|
290
|
+
readonly finally: "finally";
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
readonly assumePrimitive: true;
|
|
294
|
+
}, {
|
|
295
|
+
readonly type: "function";
|
|
296
|
+
readonly names: ["stopifnot"];
|
|
297
|
+
readonly processor: "builtin:stopifnot";
|
|
298
|
+
readonly config: {};
|
|
299
|
+
readonly assumePrimitive: false;
|
|
300
|
+
}, {
|
|
301
|
+
readonly type: "function";
|
|
302
|
+
readonly names: ["break"];
|
|
303
|
+
readonly processor: "builtin:default";
|
|
304
|
+
readonly config: {
|
|
305
|
+
readonly useAsProcessor: "builtin:break";
|
|
306
|
+
readonly cfg: ExitPointType.Break;
|
|
307
|
+
};
|
|
308
|
+
readonly assumePrimitive: false;
|
|
309
|
+
}, {
|
|
310
|
+
readonly type: "function";
|
|
311
|
+
readonly names: ["next"];
|
|
312
|
+
readonly processor: "builtin:default";
|
|
313
|
+
readonly config: {
|
|
314
|
+
readonly cfg: ExitPointType.Next;
|
|
315
|
+
};
|
|
316
|
+
readonly assumePrimitive: false;
|
|
317
|
+
}, {
|
|
318
|
+
readonly type: "function";
|
|
319
|
+
readonly names: ["{"];
|
|
320
|
+
readonly processor: "builtin:expression-list";
|
|
321
|
+
readonly config: {};
|
|
322
|
+
readonly assumePrimitive: true;
|
|
323
|
+
}, {
|
|
324
|
+
readonly type: "function";
|
|
325
|
+
readonly names: ["source"];
|
|
326
|
+
readonly processor: "builtin:source";
|
|
327
|
+
readonly config: {
|
|
328
|
+
readonly includeFunctionCall: true;
|
|
329
|
+
readonly forceFollow: false;
|
|
330
|
+
};
|
|
331
|
+
readonly assumePrimitive: false;
|
|
332
|
+
}, {
|
|
333
|
+
readonly type: "function";
|
|
334
|
+
readonly names: ["[", "[["];
|
|
335
|
+
readonly processor: "builtin:access";
|
|
336
|
+
readonly config: {
|
|
337
|
+
readonly treatIndicesAsString: false;
|
|
338
|
+
};
|
|
339
|
+
readonly assumePrimitive: true;
|
|
340
|
+
}, {
|
|
341
|
+
readonly type: "function";
|
|
342
|
+
readonly names: ["$", "@"];
|
|
343
|
+
readonly processor: "builtin:access";
|
|
344
|
+
readonly config: {
|
|
345
|
+
readonly treatIndicesAsString: true;
|
|
346
|
+
};
|
|
347
|
+
readonly assumePrimitive: true;
|
|
348
|
+
}, {
|
|
349
|
+
readonly type: "function";
|
|
350
|
+
readonly names: ["if", "ifelse"];
|
|
351
|
+
readonly processor: "builtin:if-then-else";
|
|
352
|
+
readonly config: {};
|
|
353
|
+
readonly assumePrimitive: true;
|
|
354
|
+
}, {
|
|
355
|
+
readonly type: "function";
|
|
356
|
+
readonly names: ["get"];
|
|
357
|
+
readonly processor: "builtin:get";
|
|
358
|
+
readonly config: {};
|
|
359
|
+
readonly assumePrimitive: false;
|
|
360
|
+
}, {
|
|
361
|
+
readonly type: "function";
|
|
362
|
+
readonly names: ["library", "require"];
|
|
363
|
+
readonly processor: "builtin:library";
|
|
364
|
+
readonly config: {};
|
|
365
|
+
readonly assumePrimitive: false;
|
|
366
|
+
}, {
|
|
367
|
+
readonly type: "function";
|
|
368
|
+
readonly names: ["<-", "="];
|
|
369
|
+
readonly processor: "builtin:assignment";
|
|
370
|
+
readonly config: {
|
|
371
|
+
readonly canBeReplacement: true;
|
|
372
|
+
};
|
|
373
|
+
readonly assumePrimitive: true;
|
|
374
|
+
}, {
|
|
375
|
+
readonly type: "function";
|
|
376
|
+
readonly names: [":="];
|
|
377
|
+
readonly processor: "builtin:assignment";
|
|
378
|
+
readonly config: {};
|
|
379
|
+
readonly assumePrimitive: true;
|
|
380
|
+
}, {
|
|
381
|
+
readonly type: "function";
|
|
382
|
+
readonly names: ["assign", "setGeneric", "setValidity"];
|
|
383
|
+
readonly processor: "builtin:assignment";
|
|
384
|
+
readonly config: {
|
|
385
|
+
readonly targetVariable: true;
|
|
386
|
+
};
|
|
387
|
+
readonly assumePrimitive: true;
|
|
388
|
+
}, {
|
|
389
|
+
readonly type: "function";
|
|
390
|
+
readonly names: ["setMethod"];
|
|
391
|
+
readonly processor: "builtin:assignment-like";
|
|
392
|
+
readonly config: {
|
|
393
|
+
readonly targetVariable: true;
|
|
394
|
+
readonly canBeReplacement: false;
|
|
395
|
+
readonly target: {
|
|
396
|
+
readonly idx: 0;
|
|
397
|
+
readonly name: "f";
|
|
398
|
+
};
|
|
399
|
+
readonly source: {
|
|
400
|
+
readonly idx: 2;
|
|
401
|
+
readonly name: "definition";
|
|
402
|
+
};
|
|
403
|
+
};
|
|
404
|
+
readonly assumePrimitive: true;
|
|
405
|
+
}, {
|
|
406
|
+
readonly type: "function";
|
|
407
|
+
readonly names: ["delayedAssign"];
|
|
408
|
+
readonly processor: "builtin:assignment";
|
|
409
|
+
readonly config: {
|
|
410
|
+
readonly quoteSource: true;
|
|
411
|
+
readonly targetVariable: true;
|
|
412
|
+
};
|
|
413
|
+
readonly assumePrimitive: true;
|
|
414
|
+
}, {
|
|
415
|
+
readonly type: "function";
|
|
416
|
+
readonly names: ["<<-"];
|
|
417
|
+
readonly processor: "builtin:assignment";
|
|
418
|
+
readonly config: {
|
|
419
|
+
readonly superAssignment: true;
|
|
420
|
+
readonly canBeReplacement: true;
|
|
421
|
+
};
|
|
422
|
+
readonly assumePrimitive: true;
|
|
423
|
+
}, {
|
|
424
|
+
readonly type: "function";
|
|
425
|
+
readonly names: ["->"];
|
|
426
|
+
readonly processor: "builtin:assignment";
|
|
427
|
+
readonly config: {
|
|
428
|
+
readonly swapSourceAndTarget: true;
|
|
429
|
+
readonly canBeReplacement: true;
|
|
430
|
+
};
|
|
431
|
+
readonly assumePrimitive: true;
|
|
432
|
+
}, {
|
|
433
|
+
readonly type: "function";
|
|
434
|
+
readonly names: ["->>"];
|
|
435
|
+
readonly processor: "builtin:assignment";
|
|
436
|
+
readonly config: {
|
|
437
|
+
readonly superAssignment: true;
|
|
438
|
+
readonly swapSourceAndTarget: true;
|
|
439
|
+
readonly canBeReplacement: true;
|
|
440
|
+
};
|
|
441
|
+
readonly assumePrimitive: true;
|
|
442
|
+
}, {
|
|
443
|
+
readonly type: "function";
|
|
444
|
+
readonly names: ["&&", "&"];
|
|
445
|
+
readonly processor: "builtin:special-bin-op";
|
|
446
|
+
readonly config: {
|
|
447
|
+
readonly lazy: true;
|
|
448
|
+
readonly evalRhsWhen: true;
|
|
449
|
+
};
|
|
450
|
+
readonly assumePrimitive: true;
|
|
451
|
+
}, {
|
|
452
|
+
readonly type: "function";
|
|
453
|
+
readonly names: ["||", "|"];
|
|
454
|
+
readonly processor: "builtin:special-bin-op";
|
|
455
|
+
readonly config: {
|
|
456
|
+
readonly lazy: true;
|
|
457
|
+
readonly evalRhsWhen: false;
|
|
458
|
+
};
|
|
459
|
+
readonly assumePrimitive: true;
|
|
460
|
+
}, {
|
|
461
|
+
readonly type: "function";
|
|
462
|
+
readonly names: ["|>", "%>%"];
|
|
463
|
+
readonly processor: "builtin:pipe";
|
|
464
|
+
readonly config: {};
|
|
465
|
+
readonly assumePrimitive: true;
|
|
466
|
+
}, {
|
|
467
|
+
readonly type: "function";
|
|
468
|
+
readonly names: ["function", "\\"];
|
|
469
|
+
readonly processor: "builtin:function-definition";
|
|
470
|
+
readonly config: {};
|
|
471
|
+
readonly assumePrimitive: true;
|
|
472
|
+
}, {
|
|
473
|
+
readonly type: "function";
|
|
474
|
+
readonly names: ["quote", "substitute", "bquote"];
|
|
475
|
+
readonly processor: "builtin:quote";
|
|
476
|
+
readonly config: {
|
|
477
|
+
readonly quoteArgumentsWithIndex: 0;
|
|
478
|
+
};
|
|
479
|
+
readonly assumePrimitive: true;
|
|
480
|
+
}, {
|
|
481
|
+
readonly type: "function";
|
|
482
|
+
readonly names: ["for"];
|
|
483
|
+
readonly processor: "builtin:for-loop";
|
|
484
|
+
readonly config: {};
|
|
485
|
+
readonly assumePrimitive: true;
|
|
486
|
+
}, {
|
|
487
|
+
readonly type: "function";
|
|
488
|
+
readonly names: ["repeat"];
|
|
489
|
+
readonly processor: "builtin:repeat-loop";
|
|
490
|
+
readonly config: {};
|
|
491
|
+
readonly assumePrimitive: true;
|
|
492
|
+
}, {
|
|
493
|
+
readonly type: "function";
|
|
494
|
+
readonly names: ["while"];
|
|
495
|
+
readonly processor: "builtin:while-loop";
|
|
496
|
+
readonly config: {};
|
|
497
|
+
readonly assumePrimitive: true;
|
|
498
|
+
}, {
|
|
499
|
+
readonly type: "function";
|
|
500
|
+
readonly names: ["do.call"];
|
|
501
|
+
readonly processor: "builtin:apply";
|
|
502
|
+
readonly config: {
|
|
503
|
+
readonly indexOfFunction: 0;
|
|
504
|
+
readonly unquoteFunction: true;
|
|
505
|
+
};
|
|
506
|
+
readonly assumePrimitive: true;
|
|
507
|
+
}, {
|
|
508
|
+
readonly type: "function";
|
|
509
|
+
readonly names: ["UseMethod", "NextMethod"];
|
|
510
|
+
readonly processor: "builtin:apply";
|
|
511
|
+
readonly config: {
|
|
512
|
+
readonly indexOfFunction: 0;
|
|
513
|
+
readonly unquoteFunction: true;
|
|
514
|
+
readonly resolveInEnvironment: "global";
|
|
515
|
+
};
|
|
516
|
+
readonly assumePrimitive: true;
|
|
517
|
+
}, {
|
|
518
|
+
readonly type: "function";
|
|
519
|
+
readonly names: [".Primitive", ".Internal"];
|
|
520
|
+
readonly processor: "builtin:apply";
|
|
521
|
+
readonly config: {
|
|
522
|
+
readonly indexOfFunction: 0;
|
|
523
|
+
readonly unquoteFunction: true;
|
|
524
|
+
readonly resolveInEnvironment: "global";
|
|
525
|
+
};
|
|
526
|
+
readonly assumePrimitive: true;
|
|
527
|
+
}, {
|
|
528
|
+
readonly type: "function";
|
|
529
|
+
readonly names: ["interference"];
|
|
530
|
+
readonly processor: "builtin:apply";
|
|
531
|
+
readonly config: {
|
|
532
|
+
readonly unquoteFunction: true;
|
|
533
|
+
readonly nameOfFunctionArgument: "propensity_integrand";
|
|
534
|
+
readonly libFn: true;
|
|
535
|
+
};
|
|
536
|
+
readonly assumePrimitive: false;
|
|
537
|
+
}, {
|
|
538
|
+
readonly type: "function";
|
|
539
|
+
readonly names: ["ddply"];
|
|
540
|
+
readonly processor: "builtin:apply";
|
|
541
|
+
readonly config: {
|
|
542
|
+
readonly unquoteFunction: true;
|
|
543
|
+
readonly indexOfFunction: 2;
|
|
544
|
+
readonly nameOfFunctionArgument: ".fun";
|
|
545
|
+
readonly libFn: true;
|
|
546
|
+
};
|
|
547
|
+
readonly assumePrimitive: false;
|
|
548
|
+
}, {
|
|
549
|
+
readonly type: "function";
|
|
550
|
+
readonly names: ["list"];
|
|
551
|
+
readonly processor: "builtin:list";
|
|
552
|
+
readonly config: {};
|
|
553
|
+
readonly assumePrimitive: true;
|
|
554
|
+
}, {
|
|
555
|
+
readonly type: "function";
|
|
556
|
+
readonly names: ["c"];
|
|
557
|
+
readonly processor: "builtin:vector";
|
|
558
|
+
readonly config: {};
|
|
559
|
+
readonly assumePrimitive: true;
|
|
560
|
+
readonly evalHandler: "builtin:c";
|
|
561
|
+
}, {
|
|
562
|
+
readonly type: "function";
|
|
563
|
+
readonly names: ["setnames", "setNames", "setkey", "setkeyv", "setindex", "setindexv", "setattr"];
|
|
564
|
+
readonly processor: "builtin:assignment";
|
|
565
|
+
readonly config: {
|
|
566
|
+
readonly canBeReplacement: false;
|
|
567
|
+
readonly targetVariable: false;
|
|
568
|
+
readonly makeMaybe: true;
|
|
569
|
+
readonly mayHaveMoreArgs: true;
|
|
570
|
+
};
|
|
571
|
+
}, {
|
|
572
|
+
readonly type: "function";
|
|
573
|
+
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"];
|
|
574
|
+
readonly processor: "builtin:default";
|
|
575
|
+
readonly config: {
|
|
576
|
+
readonly hasUnknownSideEffects: true;
|
|
577
|
+
};
|
|
578
|
+
readonly assumePrimitive: false;
|
|
579
|
+
}, {
|
|
580
|
+
readonly type: "function";
|
|
581
|
+
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"];
|
|
582
|
+
readonly processor: "builtin:default";
|
|
583
|
+
readonly config: {
|
|
584
|
+
readonly hasUnknownSideEffects: true;
|
|
585
|
+
readonly libFn: true;
|
|
586
|
+
};
|
|
587
|
+
readonly assumePrimitive: false;
|
|
588
|
+
}, {
|
|
589
|
+
readonly type: "function";
|
|
590
|
+
readonly names: ["on.exit"];
|
|
591
|
+
readonly processor: "builtin:register-hook";
|
|
592
|
+
readonly config: {
|
|
593
|
+
readonly hook: KnownHooks;
|
|
594
|
+
readonly args: {
|
|
595
|
+
readonly expr: {
|
|
596
|
+
readonly idx: 0;
|
|
597
|
+
readonly name: "expr";
|
|
598
|
+
};
|
|
599
|
+
readonly add: {
|
|
600
|
+
readonly idx: 1;
|
|
601
|
+
readonly name: "add";
|
|
602
|
+
readonly default: false;
|
|
603
|
+
};
|
|
604
|
+
readonly after: {
|
|
605
|
+
readonly idx: 2;
|
|
606
|
+
readonly name: "after";
|
|
607
|
+
readonly default: true;
|
|
608
|
+
};
|
|
609
|
+
};
|
|
610
|
+
};
|
|
611
|
+
readonly assumePrimitive: true;
|
|
612
|
+
}, {
|
|
613
|
+
readonly type: "replacement";
|
|
614
|
+
readonly suffixes: ["<-", "<<-"];
|
|
615
|
+
readonly names: ["[", "[[", "names", "dimnames", "attributes", "attr", "class", "levels", "rownames", "colnames", "body", "environment", "formals"];
|
|
616
|
+
readonly config: {
|
|
617
|
+
readonly readIndices: true;
|
|
618
|
+
};
|
|
619
|
+
}, {
|
|
620
|
+
readonly type: "replacement";
|
|
621
|
+
readonly suffixes: ["<-", "<<-"];
|
|
622
|
+
readonly names: ["$", "@"];
|
|
623
|
+
readonly config: {
|
|
624
|
+
readonly readIndices: false;
|
|
625
|
+
};
|
|
626
|
+
}];
|
|
16
627
|
/**
|
|
17
|
-
*
|
|
628
|
+
* Expensive and naive lookup of the default processor for a built-in function name
|
|
18
629
|
*/
|
|
19
630
|
export declare function getDefaultProcessor(name: string): BuiltInMappingName | 'unnamed' | undefined;
|