mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-07 19:30:22 -05:00
3dc61b673c
This adds code for finding imported type packages and generating code for them, but does not yet handle generating code that uses those types. Towards issue #294
7 lines
106 B
Plaintext
7 lines
106 B
Plaintext
using Set(Package)
|
|
|
|
struct Package {
|
|
Dependencies: Set(Ref(Package))
|
|
NamedTypes: Map(String, TypeRef)
|
|
}
|