@@ -387,7 +387,7 @@ export function compileScript(
387
387
isFromSetup : boolean ,
388
388
needTemplateUsageCheck : boolean
389
389
) {
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
391
391
// the work if inlineTemplate is true.
392
392
let isUsedInTemplate = needTemplateUsageCheck
393
393
if (
@@ -1109,7 +1109,7 @@ export function compileScript(
1109
1109
1110
1110
// check if user has manually specified `name` or 'render` option in
1111
1111
// export default
1112
- // if has name, UNKNOWN name inference
1112
+ // if has name, skip name inference
1113
1113
// if has render and no template, generate return object instead of
1114
1114
// empty render function (#4980)
1115
1115
let optionProperties
@@ -1586,7 +1586,7 @@ export function compileScript(
1586
1586
! userImports [ key ] . source . endsWith ( '.vue' )
1587
1587
) {
1588
1588
// 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
1590
1590
returned += `get ${ key } () { return ${ key } }, `
1591
1591
} else if ( bindingMetadata [ key ] === BindingTypes . SETUP_LET ) {
1592
1592
// local let binding, also add setter
0 commit comments