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
13
14
15
16
17
## This is a test of an unknown type name.

version 1.3

import "foo.wdl"

struct Foo {
    # Unknown
    Bar bar
    # OK
    Baz baz
}

struct Baz {
    X x
    Int y
}