@@ -216,56 +216,6 @@ class SqlEscape extends DataFlow::Node instanceof SqlEscape::Range {
216216 DataFlow:: Node getAnInput ( ) { result = super .getAnInput ( ) }
217217}
218218
219- /** Provides a class for modeling NoSql execution APIs. */
220- module NoSqlQuery {
221- /**
222- * A data-flow node that executes NoSQL queries.
223- *
224- * Extend this class to model new APIs. If you want to refine existing API models,
225- * extend `NoSQLQuery` instead.
226- */
227- abstract class Range extends DataFlow:: Node {
228- /** Gets the argument that specifies the NoSql query to be executed. */
229- abstract DataFlow:: Node getQuery ( ) ;
230- }
231- }
232-
233- /**
234- * A data-flow node that executes NoSQL queries.
235- *
236- * Extend this class to refine existing API models. If you want to model new APIs,
237- * extend `NoSQLQuery::Range` instead.
238- */
239- class NoSqlQuery extends DataFlow:: Node instanceof NoSqlQuery:: Range {
240- /** Gets the argument that specifies the NoSql query to be executed. */
241- DataFlow:: Node getQuery ( ) { result = super .getQuery ( ) }
242- }
243-
244- /** Provides classes for modeling NoSql sanitization-related APIs. */
245- module NoSqlSanitizer {
246- /**
247- * A data-flow node that collects functions sanitizing NoSQL queries.
248- *
249- * Extend this class to model new APIs. If you want to refine existing API models,
250- * extend `NoSQLSanitizer` instead.
251- */
252- abstract class Range extends DataFlow:: Node {
253- /** Gets the argument that specifies the NoSql query to be sanitized. */
254- abstract DataFlow:: Node getAnInput ( ) ;
255- }
256- }
257-
258- /**
259- * A data-flow node that collects functions sanitizing NoSQL queries.
260- *
261- * Extend this class to model new APIs. If you want to refine existing API models,
262- * extend `NoSQLSanitizer::Range` instead.
263- */
264- class NoSqlSanitizer extends DataFlow:: Node instanceof NoSqlSanitizer:: Range {
265- /** Gets the argument that specifies the NoSql query to be sanitized. */
266- DataFlow:: Node getAnInput ( ) { result = super .getAnInput ( ) }
267- }
268-
269219/** Provides classes for modeling HTTP Header APIs. */
270220module HeaderDeclaration {
271221 /**
0 commit comments