wdl-analysis 0.24.0

Analysis of Workflow Description Language (WDL) documents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
error: type mismatch: expected index to be type `Int`, but found type `String`
   ┌─ tests/analysis/index-not-integer/source.wdl:10:18
   │
10 │     String x = a["foo"]
   │                  ^^^^^ this is type `String`

error: type mismatch: expected index to be type `String`, but found type `Int`
   ┌─ tests/analysis/index-not-integer/source.wdl:11:18
   │
11 │     String y = b[0]
   │                  ^ this is type `Int`