e(node,"animation_missing_key","An element that uses the `animate:` directive must be the only child of a keyed `{#each ...}` block. Did you forget to add a key to your each block?");
}
/**
*Anelementcanonlyhaveone'animate'directive
*@param{null|number|NodeLike}node
*@returns{never}
*/
exportfunctionanimation_duplicate(node){
e(node,"animation_duplicate","An element can only have one 'animate' directive");
}
/**
*Attributeshorthandcannotbeempty
*@param{null|number|NodeLike}node
@ -445,36 +418,6 @@ export function invalid_title_content(node) {
e(node,"invalid_title_content","`<title>` can only contain text and {tags}");
}
/**
*Valideventmodifiersare%list%
*@param{null|number|NodeLike}node
*@param{string}list
*@returns{never}
*/
exportfunctioninvalid_event_modifier(node,list){
e(node,"invalid_event_modifier",`Valid event modifiers are ${list}`);
e(node,"svelte_options_invalid_attribute_value",`Valid values are ${list}`);
}
/**
@ -1361,6 +1305,63 @@ export function conflicting_slot_usage(node) {
e(node,"conflicting_slot_usage","Cannot use `<slot>` syntax and `{@render ...}` tags in the same component. Migrate towards `{@render ...}` tags completely.");
e(node,"animation_missing_key","An element that uses the `animate:` directive must be the only child of a keyed `{#each ...}` block. Did you forget to add a key to your each block?");
}
/**
*Anelementcanonlyhaveone'animate'directive
*@param{null|number|NodeLike}node
*@returns{never}
*/
exportfunctionanimation_duplicate(node){
e(node,"animation_duplicate","An element can only have one 'animate' directive");