wdl-analysis 0.22.0

Analysis of Workflow Description Language (WDL) documents.
Documentation
1
2
3
4
5
6
7
8
9
error: a name reference cycle was detected
   ┌─ tests/analysis/name-reference-cycle/source.wdl:8:13
   │
 8 │     Int a = b
   │             ^ ensure this expression does not directly or indirectly refer to `c`
 9 │     Int b = c
10 │     Int c = a
   │             - a reference back to `a` is here