Skip to content

Commit 24577a4

Browse files
committed
please the linter gods by using a const
1 parent 70fb36c commit 24577a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/transform/expand-generics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ export function expandGenerics (inputModel: Model): Model {
174174
if (result.behaviors != null) {
175175
result.behaviors.forEach(b => {
176176
if (b.generics == null) {
177-
var type = getType(b.type)
177+
const type = getType(b.type)
178178
addIfNotSeen(b.type, () => type)
179179
}
180180
})

0 commit comments

Comments
 (0)