Skip to content

Commit 6cf1334

Browse files
committed
Fix comment style in UnboundEventHandlerReceiver
1 parent 7623ebb commit 6cf1334

File tree

1 file changed

+3
-3
lines changed
  • javascript/ql/test/query-tests/Expressions/UnboundEventHandlerReceiver

1 file changed

+3
-3
lines changed

javascript/ql/test/query-tests/Expressions/UnboundEventHandlerReceiver/tst.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ class Component1 extends React.Component {
2424
render() {
2525
var unbound3 = this.unbound3;
2626
return <div>
27-
<div onClick={this.unbound1}/> // $ Alert
28-
<div onClick={this.unbound2}/> // $ Alert
29-
<div onClick={unbound3}/> // $ Alert
27+
<div onClick={this.unbound1}/> { /* $ Alert */ }
28+
<div onClick={this.unbound2}/> { /* $ Alert */ }
29+
<div onClick={unbound3}/> { /* $ Alert */ }
3030
<div onClick={this.bound_throughBindInConstructor}/>
3131
<div onClick={this.bound_throughDeclaration}/>
3232
<div onClick={this.unbound_butNoThis}/>

0 commit comments

Comments
 (0)