Skip to content

Commit 67a5880

Browse files
author
Maria Solano
committed
Improve error message
1 parent 49b38db commit 67a5880

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/compiler/diagnosticMessages.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7640,7 +7640,7 @@
76407640
"category": "Message",
76417641
"code": 95185
76427642
},
7643-
"Variables that share a name with a type or namespace in the same scope cannot be inlined.": {
7643+
"Variables with multiple declarations cannot be inlined.": {
76447644
"category": "Message",
76457645
"code": 95186
76467646
},

src/services/refactors/inlineVariable.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ function getInliningInfo(file: SourceFile, startPosition: number, tryWithReferen
132132
if (isInitializedVariable(parent) && isVariableDeclarationInVariableStatement(parent)) {
133133
// Don't inline the variable if it has multiple declarations.
134134
if (checker.getMergedSymbol(parent.symbol).declarations?.length !== 1) {
135-
return { error: getLocaleSpecificMessage(Diagnostics.Variables_that_share_a_name_with_a_type_or_namespace_in_the_same_scope_cannot_be_inlined) };
135+
return { error: getLocaleSpecificMessage(Diagnostics.Variables_with_multiple_declarations_cannot_be_inlined) };
136136
}
137137

138138
// Do not inline if the variable is exported.
@@ -152,7 +152,7 @@ function getInliningInfo(file: SourceFile, startPosition: number, tryWithReferen
152152

153153
// Don't inline the variable if it has multiple declarations.
154154
if (definition?.declarations?.length !== 1) {
155-
return { error: getLocaleSpecificMessage(Diagnostics.Variables_that_share_a_name_with_a_type_or_namespace_in_the_same_scope_cannot_be_inlined) };
155+
return { error: getLocaleSpecificMessage(Diagnostics.Variables_with_multiple_declarations_cannot_be_inlined) };
156156
}
157157

158158
// Make sure we're not inlining something like "let foo;" or "for (let i = 0; i < 5; i++) {}".

0 commit comments

Comments
 (0)