Files
codeql/javascript/ql/src/Declarations/AssignmentToConst.ql
2018-08-02 17:53:23 +01:00

23 lines
788 B
Plaintext

/**
* @name Assignment to constant
* @description Assigning to a variable that is declared 'const' has either no effect or leads to a
* runtime error, depending on the platform.
* @kind problem
* @problem.severity error
* @id js/assignment-to-constant
* @tags reliability
* correctness
* @precision very-high
*/
import javascript
import semmle.javascript.RestrictedLocations
from ConstDeclStmt cds, VariableDeclarator decl, VarDef def, Variable v
where decl = cds.getADecl() and
def.getAVariable() = v and
decl.getBindingPattern().getAVariable() = v and
def != decl and
def.(ExprOrStmt).getTopLevel() = decl.getTopLevel()
select def.(FirstLineOf), "Assignment to variable " + v.getName() + ", which is $@ constant.", cds, "declared"