Update javascript/ql/src/semmle/javascript/dataflow/DataFlow.qll

Co-Authored-By: Max Schaefer <54907921+max-schaefer@users.noreply.github.com>
This commit is contained in:
Asger F
2019-11-08 16:14:53 +00:00
committed by GitHub
parent 53d470da2f
commit 4ad03a9061

View File

@@ -529,7 +529,7 @@ module DataFlow {
* obj[e] = value; // assignment to a computed member
* { f: value } // property initializer
* { g() {} } // object literal method
* { get g() {}, set g(v) {} } // accessor methods (has no rhs value)
* { get g() {}, set g(v) {} } // accessor methods (have no rhs value)
* class C {
* constructor(public x: number); // parameter field (TypeScript only)
* static m() {} // static method