File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2613,21 +2613,21 @@ class NoOpt extends Annotation {
26132613class OverlayCaller extends Annotation {
26142614 OverlayCaller ( ) { this .getName ( ) = "overlay" and this .getArgs ( 0 ) instanceof CallerArg }
26152615
2616- override string toString ( ) { result = "caller" }
2616+ override string toString ( ) { result = "overlay[ caller] " }
26172617}
26182618
26192619/** An `overlay[local]` annotation. */
26202620class OverlayLocal extends Annotation {
26212621 OverlayLocal ( ) { this .getName ( ) = "overlay" and this .getArgs ( 0 ) instanceof LocalArg }
26222622
2623- override string toString ( ) { result = "local" }
2623+ override string toString ( ) { result = "overlay[ local] " }
26242624}
26252625
26262626/** An `overlay[local?]` annotation. */
26272627class OverlayLocalQ extends Annotation {
26282628 OverlayLocalQ ( ) { this .getName ( ) = "overlay" and this .getArgs ( 0 ) instanceof LocalQArg }
26292629
2630- override string toString ( ) { result = "local?" }
2630+ override string toString ( ) { result = "overlay[ local?] " }
26312631}
26322632
26332633/** A `language[monotonicAggregates]` annotation. */
You can’t perform that action at this time.
0 commit comments