Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOS-React-2
QOS-React-2
/
compiler
/
packages
/
babel-plugin-react-compiler
/
src
/
__tests__
/
fixtures
/
compiler
/
unused-logical-assigned-to-variable.js
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
js
7 lines
157 Bytes
Copy permalink
Copy
Raw
1
function
Component
(
props
)
{
2
// unused!
3
const
obj
=
makeObject
();
4
const
obj2
=
makeObject
();
5
const
_
=
(
obj
.
a
??
obj2
.
b
)
||
props
.
c
;
6
return
null
;
7
}