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
/
ssa-non-empty-initializer.js
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
js
15 lines
189 Bytes
Copy permalink
Copy
Raw
1
function
foo
(
a
,
b
)
{
2
let
x
=
[];
3
if
(
a
)
{
4
x
=
1
;
5
}
6
7
let
y
=
x
;
8
return
y
;
9
}
10
11
export
const
FIXTURE_ENTRYPOINT
=
{
12
fn
:
foo
,
13
params
:
[
'
TodoAdd
'
],
14
isComponent
:
'
TodoAdd
'
,
15
};