Skip to content

Commit 0b79740

Browse files
authored
Merge pull request #20678 from emberjs/fix-ast-deprecation
Address a missed deprecation introduced in #20658
2 parents 11feb3a + e65f40f commit 0b79740

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

packages/ember-template-compiler/lib/plugins/assert-against-attrs.ts

+6-4
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,13 @@ export default function assertAgainstAttrs(env: EmberASTPluginEnvironment): ASTP
107107
}
108108

109109
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;
110+
return (
111+
node.head.type === 'VarHead' &&
112+
node.head.name === 'attrs' &&
113+
symbols.indexOf(node.head.name) === -1
114+
);
112115
}
113116

114117
function isThisDotAttrs(node: AST.PathExpression) {
115-
let name = node.parts[0];
116-
return node.head.type === 'ThisHead' && name === 'attrs';
118+
return node.head.type === 'ThisHead' && node.tail[0] === 'attrs';
117119
}

0 commit comments

Comments
 (0)