File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
cpp/common/src/codingstandards/cpp
guideline_recategorizations Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,20 +8,20 @@ import codingstandards.cpp.exclusions.RuleMetadata
8
8
import codingstandards.cpp.deviations.Deviations
9
9
10
10
/** A `coding-standards.xml` configuration file (usually generated from an YAML configuration file). */
11
- class CodingStandardsFile extends XMLFile {
11
+ class CodingStandardsFile extends XmlFile {
12
12
CodingStandardsFile ( ) {
13
13
this .getBaseName ( ) = "coding-standards.xml" and
14
14
// Must be within the users source code.
15
15
exists ( this .getRelativePath ( ) )
16
16
}
17
17
}
18
18
19
- class CodingStandardsConfigSection extends XMLElement {
19
+ class CodingStandardsConfigSection extends XmlElement {
20
20
CodingStandardsConfigSection ( ) { getParent ( ) instanceof CodingStandardsConfig }
21
21
}
22
22
23
23
/** A "Coding Standards" configuration file */
24
- class CodingStandardsConfig extends XMLElement {
24
+ class CodingStandardsConfig extends XmlElement {
25
25
CodingStandardsConfig ( ) {
26
26
any ( CodingStandardsFile csf ) .getARootElement ( ) = this and
27
27
this .getName ( ) = "codingstandards"
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class GuidelineRecategorizations extends CodingStandardsConfigSection {
12
12
GuidelineRecategorizations ( ) { hasName ( "guideline-recategorizations" ) }
13
13
}
14
14
15
- class GuidelineRecategorization extends XMLElement {
15
+ class GuidelineRecategorization extends XmlElement {
16
16
GuidelineRecategorization ( ) {
17
17
getParent ( ) instanceof GuidelineRecategorizations and
18
18
hasName ( "guideline-recategorizations-entry" )
You can’t perform that action at this time.
0 commit comments