JS: Update comments referring to old Configuration style

Also avoid the term "analysis-specific" because it's not a term we use anywhere else.
This commit is contained in:
Asger F
2024-11-12 14:40:36 +01:00
parent 13ee597848
commit 249104b8ae
2 changed files with 2 additions and 4 deletions

View File

@@ -29,8 +29,7 @@ private import semmle.javascript.internal.CachedStages
* This class is a singleton, and thus subclasses do not need to specify a characteristic predicate.
*
* Note: For performance reasons, all subclasses of this class should be part
* of the standard library. Override `Configuration::isAdditionalFlowStep`
* for analysis-specific flow steps.
* of the standard library. Use `isAdditionalFlowStep` for query-specific flow steps.
*/
class AdditionalFlowStep extends Unit {
/**

View File

@@ -12,8 +12,7 @@ private import semmle.javascript.internal.CachedStages
* This class is a singleton, and thus subclasses do not need to specify a characteristic predicate.
*
* Note: For performance reasons, all subclasses of this class should be part
* of the standard library. Override `Configuration::isAdditionalTaintStep`
* for analysis-specific taint steps.
* of the standard library. Use `isAdditionalFlowStep` for query-specific taint steps.
*/
class AdditionalTaintStep extends Unit {
/**