Dataflow Aspect¶ ⧉
A language's data flow aspect allows you to find unreachable statements, detect unused assignments, or check whether you didn't initialize a variable before it's read.
— MPS documentation
Where can you find good examples to understand how dataflow works?
Look at the data flow builders of jetbrains.mps.baselanguage. You can also search for usages of DataFlowBuilderDeclaration ⧉ in general.
What other MPS-related dataflow projects exist?
- MPS-DF is a dataflow extension for MPS (
com.mbeddr.mpsutil.dataflow
): An Extensible Framework for Variable-precision Data-flow Analyses in MPS | Tamás Szabó ⧉ - IncA ⧉ is a program analysis framework.