|
|
|
@ -302,10 +302,7 @@ export function analyze_module(source, options) {
|
|
|
|
|
function_depth: 0,
|
|
|
|
|
has_props_rune: false,
|
|
|
|
|
options: /** @type {ValidatedCompileOptions} */ (options),
|
|
|
|
|
fragment: {
|
|
|
|
|
has_await: false,
|
|
|
|
|
node: null
|
|
|
|
|
},
|
|
|
|
|
fragment: null,
|
|
|
|
|
parent_element: null,
|
|
|
|
|
reactive_statement: null
|
|
|
|
|
},
|
|
|
|
@ -694,10 +691,7 @@ export function analyze_component(root, source, options) {
|
|
|
|
|
analysis,
|
|
|
|
|
options,
|
|
|
|
|
ast_type: ast === instance.ast ? 'instance' : ast === template.ast ? 'template' : 'module',
|
|
|
|
|
fragment: {
|
|
|
|
|
has_await: false,
|
|
|
|
|
node: ast === template.ast ? template.ast : null
|
|
|
|
|
},
|
|
|
|
|
fragment: ast === template.ast ? ast : null,
|
|
|
|
|
parent_element: null,
|
|
|
|
|
has_props_rune: false,
|
|
|
|
|
component_slots: new Set(),
|
|
|
|
@ -763,10 +757,7 @@ export function analyze_component(root, source, options) {
|
|
|
|
|
scopes,
|
|
|
|
|
analysis,
|
|
|
|
|
options,
|
|
|
|
|
fragment: {
|
|
|
|
|
has_await: false,
|
|
|
|
|
node: ast === template.ast ? template.ast : null
|
|
|
|
|
},
|
|
|
|
|
fragment: ast === template.ast ? ast : null,
|
|
|
|
|
parent_element: null,
|
|
|
|
|
has_props_rune: false,
|
|
|
|
|
ast_type: ast === instance.ast ? 'instance' : ast === template.ast ? 'template' : 'module',
|
|
|
|
|