We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 11feb3a + e65f40f commit 0b79740Copy full SHA for 0b79740
packages/ember-template-compiler/lib/plugins/assert-against-attrs.ts
@@ -107,11 +107,13 @@ export default function assertAgainstAttrs(env: EmberASTPluginEnvironment): ASTP
107
}
108
109
function isAttrs(node: AST.PathExpression, symbols: string[]) {
110
- let name = node.parts[0];
111
- return node.head.type === 'VarHead' && name === 'attrs' && symbols.indexOf(name) === -1;
+ return (
+ node.head.type === 'VarHead' &&
112
+ node.head.name === 'attrs' &&
113
+ symbols.indexOf(node.head.name) === -1
114
+ );
115
116
117
function isThisDotAttrs(node: AST.PathExpression) {
- return node.head.type === 'ThisHead' && name === 'attrs';
118
+ return node.head.type === 'ThisHead' && node.tail[0] === 'attrs';
119
0 commit comments