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-newexpression.js
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
js
8 lines
118 Bytes
Copy permalink
Copy
Raw
1
function
Foo
()
{}
2
3
function
Component
(
props
)
{
4
const
a
=
[];
5
const
b
=
{};
6
let
c
=
new
Foo
(
a
,
b
);
7
return
c
;
8
}