wdl-analysis 0.22.0

Analysis of Workflow Description Language (WDL) documents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: cannot assign an empty array to a non-empty array type
   ┌─ tests/analysis/non-empty-array/source.wdl:17:21
   │
17 │     Array[Int]+ x = []
   │                 -   ^^ this is an empty array
   │                 │    
   │                 this expects a non-empty array

error: cannot assign an empty array to a non-empty array type
   ┌─ tests/analysis/non-empty-array/source.wdl:31:31
   │
31 │     call t as t4 { input: x = ((([]))) }
   │                           -   ^^^^^^^^ this is an empty array
   │                           │    
   │                           this expects a non-empty array