We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be10f24 commit d532815Copy full SHA for d532815
javascript/ql/src/semmle/javascript/dataflow/DataFlow.qll
@@ -397,12 +397,6 @@ module DataFlow {
397
*/
398
abstract string getPropertyName();
399
400
- /**
401
- * Holds if this creates an alias for the property, as opposed to
402
- * just being a read or write of the property.
403
- */
404
- predicate isES2015PropertyBinding() { none() }
405
-
406
/**
407
* Holds if this data flow node accesses property `p` on base node `base`.
408
@@ -711,8 +705,6 @@ module DataFlow {
711
705
override Expr getPropertyNameExpr() { result = spec.getImported() }
712
706
713
707
override string getPropertyName() { result = spec.getImportedName() }
714
715
- override predicate isES2015PropertyBinding() { any() }
716
708
}
717
709
718
710
0 commit comments