Add default for hasOptionalResult

This commit is contained in:
Jeroen Ketema
2023-05-23 12:32:11 +02:00
parent adbf66a365
commit 3efc78ed49
3 changed files with 5 additions and 13 deletions

View File

@@ -19,10 +19,6 @@ module AstTest {
value = p.getName()
)
}
predicate hasOptionalResult(Location location, string element, string tag, string value) {
none()
}
}
}
@@ -49,10 +45,6 @@ module IRTest {
value = stars(n.getIndirectionIndex()) + p.getName()
)
}
predicate hasOptionalResult(Location location, string element, string tag, string value) {
none()
}
}
}

View File

@@ -27,10 +27,6 @@ module LocalFlowSourceTest implements TestSig {
element = node.toString()
)
}
predicate hasOptionalResult(Location location, string element, string tag, string value) {
none()
}
}
import MakeTest<LocalFlowSourceTest>