Lines Matching refs:propertyName
690 let propertyName: string;
692 propertyName = node.name.escapedText.toString();
694 const curPropertyKind: string = getPropertyDecoratorKind(propertyName, customComponentName);
706 node, propertyName, curPropertyKind, parentPropertyName, parentPropertyKind, log);
711 validateIllegalInitFromParent(node, propertyName, curPropertyKind,
720 getParentPropertyName(node as ts.PropertyAssignment, curPropertyKind, log) || propertyName;
727 `${curPropertyKind} property '${propertyName}' by yourself.`,
733 … node, propertyName, curPropertyKind, parentPropertyName, parentPropertyKind, log, LogType.WARN);
815 function getPropertyDecoratorKind(propertyName: string, customComponentName: string): string {
817 if (getCollectionSet(customComponentName, item[1]).has(propertyName)) {
951 function validateIllegalInitFromParent(node: ts.ObjectLiteralElementLike, propertyName: string,
964 `the ${curPropertyKind} property '${propertyName}'.`,