|
|
|
@ -304,7 +304,6 @@ export function analyze_module(source, options) {
|
|
|
|
|
options: /** @type {ValidatedCompileOptions} */ (options),
|
|
|
|
|
fragment: null,
|
|
|
|
|
title: null,
|
|
|
|
|
boundary: null,
|
|
|
|
|
parent_element: null,
|
|
|
|
|
reactive_statement: null
|
|
|
|
|
},
|
|
|
|
@ -696,7 +695,6 @@ export function analyze_component(root, source, options) {
|
|
|
|
|
ast_type: ast === instance.ast ? 'instance' : ast === template.ast ? 'template' : 'module',
|
|
|
|
|
fragment: ast === template.ast ? ast : null,
|
|
|
|
|
title: null,
|
|
|
|
|
boundary: null,
|
|
|
|
|
parent_element: null,
|
|
|
|
|
has_props_rune: false,
|
|
|
|
|
component_slots: new Set(),
|
|
|
|
@ -764,7 +762,6 @@ export function analyze_component(root, source, options) {
|
|
|
|
|
options,
|
|
|
|
|
fragment: ast === template.ast ? ast : null,
|
|
|
|
|
title: null,
|
|
|
|
|
boundary: null,
|
|
|
|
|
parent_element: null,
|
|
|
|
|
has_props_rune: false,
|
|
|
|
|
ast_type: ast === instance.ast ? 'instance' : ast === template.ast ? 'template' : 'module',
|
|
|
|
|