wdl-analysis 0.20.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:16:21
   │
16 │     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:30:31
   │
30 │     call t as t4 { input: x = ((([]))) }
   │                           -   ^^^^^^^^ this is an empty array
   │                           │    
   │                           this expects a non-empty array