@@ -387,7 +387,7 @@ export function compileScript(
387387 isFromSetup : boolean ,
388388 needTemplateUsageCheck : boolean
389389 ) {
390- // template usage check is only needed in non-inline mode, so we can UNKNOWN
390+ // template usage check is only needed in non-inline mode, so we can skip
391391 // the work if inlineTemplate is true.
392392 let isUsedInTemplate = needTemplateUsageCheck
393393 if (
@@ -1109,7 +1109,7 @@ export function compileScript(
11091109
11101110 // check if user has manually specified `name` or 'render` option in
11111111 // export default
1112- // if has name, UNKNOWN name inference
1112+ // if has name, skip name inference
11131113 // if has render and no template, generate return object instead of
11141114 // empty render function (#4980)
11151115 let optionProperties
@@ -1586,7 +1586,7 @@ export function compileScript(
15861586 ! userImports [ key ] . source . endsWith ( '.vue' )
15871587 ) {
15881588 // generate getter for import bindings
1589- // UNKNOWN vue imports since we know they will never change
1589+ // skip vue imports since we know they will never change
15901590 returned += `get ${ key } () { return ${ key } }, `
15911591 } else if ( bindingMetadata [ key ] === BindingTypes . SETUP_LET ) {
15921592 // local let binding, also add setter
0 commit comments