C#: Do not require that comments and type locations are in source in test.

This commit is contained in:
Michael Nebel
2025-11-10 13:53:41 +01:00
parent 43118ecccc
commit 0a16cf68de

View File

@@ -32,8 +32,8 @@ query predicate eventAccessors(EventAccessor ea) { ea.fromSource() }
query predicate usingDirectives(UsingDirective ud) { ud.fromSource() }
query predicate commentLines(CommentLine cl) { cl.getLocation().getFile().fromSource() }
query predicate commentLines(CommentLine cl) { any() }
query predicate commentBlocks(CommentBlock cb) { cb.getLocation().getFile().fromSource() }
query predicate commentBlocks(CommentBlock cb) { any() }
query predicate typeMentions(TypeMention tm) { tm.getLocation().getFile().fromSource() }
query predicate typeMentions(TypeMention tm) { any() }