@@ -2488,7 +2488,7 @@ module YAML {
2488
2488
YamlListItem getListItem ( ) { toGenerateYaml ( result ) .getParent ( ) = yamle }
2489
2489
2490
2490
/** Gets the value of this YAML entry. */
2491
- YAMLValue getValue ( ) {
2491
+ YamlValue getValue ( ) {
2492
2492
exists ( Yaml:: Keyvaluepair pair |
2493
2493
pair .getParent ( ) = yamle and
2494
2494
result = TYamlValue ( pair .getValue ( ) )
@@ -2510,7 +2510,7 @@ module YAML {
2510
2510
/**
2511
2511
* Gets the value of this YAML key.
2512
2512
*/
2513
- YAMLValue getValue ( ) {
2513
+ YamlValue getValue ( ) {
2514
2514
exists ( Yaml:: Keyvaluepair pair |
2515
2515
pair .getKey ( ) = yamlkey and result = TYamlValue ( pair .getValue ( ) )
2516
2516
)
@@ -2549,7 +2549,7 @@ module YAML {
2549
2549
/**
2550
2550
* Gets the value of this YAML list item.
2551
2551
*/
2552
- YAMLValue getValue ( ) { result = TYamlValue ( yamllistitem .getChild ( ) ) }
2552
+ YamlValue getValue ( ) { result = TYamlValue ( yamllistitem .getChild ( ) ) }
2553
2553
2554
2554
override string getAPrimaryQlClass ( ) { result = "YamlListItem" }
2555
2555
}
@@ -2558,12 +2558,12 @@ module YAML {
2558
2558
deprecated class YAMLListItem = YamlListItem ;
2559
2559
2560
2560
/** A YAML value. */
2561
- class YAMLValue extends TYamlValue , YAMLNode {
2561
+ class YamlValue extends TYamlValue , YAMLNode {
2562
2562
Yaml:: Value yamlvalue ;
2563
2563
2564
- YAMLValue ( ) { this = TYamlValue ( yamlvalue ) }
2564
+ YamlValue ( ) { this = TYamlValue ( yamlvalue ) }
2565
2565
2566
- override string getAPrimaryQlClass ( ) { result = "YAMLValue " }
2566
+ override string getAPrimaryQlClass ( ) { result = "YamlValue " }
2567
2567
2568
2568
/** Gets the value of this YAML value. */
2569
2569
string getValue ( ) { result = yamlvalue .getValue ( ) }
0 commit comments