JS: Make API::EntryPoint overrides optional

This commit is contained in:
Asger Feldthaus
2022-04-05 09:39:34 +02:00
committed by Asger F
parent ce9c3b3eb5
commit 76ba78294f
13 changed files with 2 additions and 30 deletions

View File

@@ -2,8 +2,6 @@ class CustomEntryPoint extends API::EntryPoint {
CustomEntryPoint() { this = "CustomEntryPoint" }
override DataFlow::SourceNode getASource() { result = DataFlow::globalVarRef("CustomEntryPoint") }
override DataFlow::Node getASink() { none() }
}
import ApiGraphs.VerifyAssertions