wdl-analysis 0.19.1

Analysis of Workflow Description Language (WDL) documents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#@ except: UnusedImport
## This a test of importing an identical struct.
## There should be no diagnostics generated

version 1.1

import "a/file.wdl" as a
import "b/file.wdl" as b

struct Foo {
    String a
    Int b
    File c
}

workflow test {
}