Parameters
- msg: Model.Message
- onError: (
type:
| "duplicate-declaration"
| "duplicate-variant"
| "key-mismatch"
| "missing-fallback"
| "missing-selector-annotation",
node: Node,
) => void = ...
Returns { functions: Set<string>; variables: Set<string> }
The sets of runtime functions
and variables
used by the message.
Ensure that the
msg
data model is valid, callingonError
on errors. IfonError
is not defined, a MessageDataModelError will be thrown on error.Detects the following errors:
'key-mismatch'
: Variant Key MismatchThe number of keys on a variant does not equal the number of selectors.
'missing-fallback'
: Missing Fallback VariantThe message does not include a variant with only catch-all keys.
'missing-selector-annotation'
: Missing Selector AnnotationA selector does not contains a variable that directly or indirectly reference a declaration with a function.
'duplicate-declaration'
: Duplicate DeclarationA variable appears in two declarations.
'duplicate-variant'
: Duplicate VariantThe same list of keys is used for more than one variant.