We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7623ebb commit 6cf1334Copy full SHA for 6cf1334
javascript/ql/test/query-tests/Expressions/UnboundEventHandlerReceiver/tst.js
@@ -24,9 +24,9 @@ class Component1 extends React.Component {
24
render() {
25
var unbound3 = this.unbound3;
26
return <div>
27
- <div onClick={this.unbound1}/> // $ Alert
28
- <div onClick={this.unbound2}/> // $ Alert
29
- <div onClick={unbound3}/> // $ Alert
+ <div onClick={this.unbound1}/> { /* $ Alert */ }
+ <div onClick={this.unbound2}/> { /* $ Alert */ }
+ <div onClick={unbound3}/> { /* $ Alert */ }
30
<div onClick={this.bound_throughBindInConstructor}/>
31
<div onClick={this.bound_throughDeclaration}/>
32
<div onClick={this.unbound_butNoThis}/>
0 commit comments