Be more forgiving about (currently) undefined types #20
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When a typed-function is bundled, perhaps just ignore any implementations that use an undefined type, and record that the typed-function depends on that type, so it will be invalidated when the type is defined. For doing those dependencies, it might be convenient rather than putting all of the types in a single special key 'Types' to use a syntactic variant to mark types as opposed to operations. We are limited here by Javascript identifier conventions. So, for example, we could say that to define the
number
type, a module should export the identifier_number_
(sort of like type names are in italics ;) with the properties 'test' and 'from' giving the definition of the type and the conversions from other types).The advantage of this feature is that then you can have a module defining an operation for many types, even though the types may not end up all being defined, without a type error when the bundle is created. The signatures that use unknown types are simply ignored (at that time; if the type shows up, the function will be rebundled).