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
88import codingstandards.cpp.deviations.Deviations
99
1010/** A `coding-standards.xml` configuration file (usually generated from an YAML configuration file). */
11- class CodingStandardsFile extends XMLFile {
11+ class CodingStandardsFile extends XmlFile {
1212 CodingStandardsFile ( ) {
1313 this .getBaseName ( ) = "coding-standards.xml" and
1414 // Must be within the users source code.
1515 exists ( this .getRelativePath ( ) )
1616 }
1717}
1818
19- class CodingStandardsConfigSection extends XMLElement {
19+ class CodingStandardsConfigSection extends XmlElement {
2020 CodingStandardsConfigSection ( ) { getParent ( ) instanceof CodingStandardsConfig }
2121}
2222
2323/** A "Coding Standards" configuration file */
24- class CodingStandardsConfig extends XMLElement {
24+ class CodingStandardsConfig extends XmlElement {
2525 CodingStandardsConfig ( ) {
2626 any ( CodingStandardsFile csf ) .getARootElement ( ) = this and
2727 this .getName ( ) = "codingstandards"
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class GuidelineRecategorizations extends CodingStandardsConfigSection {
1212 GuidelineRecategorizations ( ) { hasName ( "guideline-recategorizations" ) }
1313}
1414
15- class GuidelineRecategorization extends XMLElement {
15+ class GuidelineRecategorization extends XmlElement {
1616 GuidelineRecategorization ( ) {
1717 getParent ( ) instanceof GuidelineRecategorizations and
1818 hasName ( "guideline-recategorizations-entry" )
You can’t perform that action at this time.
0 commit comments