We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0bfc83b + c5131e6 commit 5313928Copy full SHA for 5313928
src/services/services.ts
@@ -1640,6 +1640,7 @@ namespace ts {
1640
jsxOpenTagName = 19,
1641
jsxCloseTagName = 20,
1642
jsxSelfClosingTagName = 21,
1643
+ jsxAttribute = 22
1644
}
1645
1646
/// Language Service
@@ -6903,9 +6904,12 @@ namespace ts {
6903
6904
return ClassificationType.jsxSelfClosingTagName;
6905
6906
return;
6907
+ case SyntaxKind.JsxAttribute:
6908
+ if ((<JsxAttribute>token.parent).name === token) {
6909
+ return ClassificationType.jsxAttribute;
6910
+ }
6911
6912
-
6913
return ClassificationType.identifier;
6914
6915
0 commit comments