summaryrefslogtreecommitdiff
path: root/docs/dev
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-03-10 11:05:40 -0400
committerMason Reed <mason@vector35.com>2025-04-02 05:36:54 -0400
commit25cc02431b61097b2adfc2fbc493b648b0300c3b (patch)
treea79d9c4f4f67234d3bf9bda413e8608f479a4cc8 /docs/dev
parentfa85bf28502286c4821427c5d0ed91a7ed46f8f6 (diff)
[SharedCache] Refactor Shared Cache
In absence of a better name, this commit refactors the shared cache code.
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/workflows.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/dev/workflows.md b/docs/dev/workflows.md
index 13c20ae0..ac1ed2c1 100644
--- a/docs/dev/workflows.md
+++ b/docs/dev/workflows.md
@@ -145,7 +145,7 @@ You can query the list of all registered workflows or filter them by type using
# List all Module and Function workflows
list(Workflow)
[<Workflow: core.function.baseAnalysis>,
-<Workflow: core.function.dsc>,
+<Workflow: core.function.sharedCache>,
<Workflow: core.function.metaAnalysis>,
<Workflow: core.function.objectiveC>,
<Workflow: core.module.baseAnalysis>,
@@ -157,7 +157,7 @@ Settings().query_property_string_list("analysis.workflows.moduleWorkflow", "enum
# List all function workflows from the Settings API
>>> Settings().query_property_string_list("analysis.workflows.functionWorkflow", "enum")
-['core.function.baseAnalysis', 'core.function.dsc', 'core.function.metaAnalysis', 'core.function.objectiveC']
+['core.function.baseAnalysis', 'core.function.sharedCache', 'core.function.metaAnalysis', 'core.function.objectiveC']
```
Once you've queried the available workflows, you can create your own by cloning and modifying an existing workflow. Below are some simple examples that demonstrate how to modify module-level analysis.