It's ok to run decorators on non-templated models

This commit is contained in:
Brian Terlson 2021-03-04 12:29:24 -08:00
Родитель 47866d53d8
Коммит ca96f9cf3b
1 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -538,8 +538,9 @@ export function createChecker(program: Program) {
}; };
if ( if (
instantiatingThisTemplate && (instantiatingThisTemplate &&
templateInstantiation.every((t) => t.kind !== "TemplateParameter") templateInstantiation.every((t) => t.kind !== "TemplateParameter")) ||
node.templateParameters.length === 0
) { ) {
createType(type); createType(type);
} }
@ -605,9 +606,6 @@ export function createChecker(program: Program) {
return type; return type;
} }
const links = getSymbolLinks(node.symbol!);
links.type = assignmentType;
return assignmentType; return assignmentType;
} }