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
/
object-computed-access-assignment.js
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
js
11 lines
184 Bytes
Copy permalink
Copy
Raw
1
function
foo
(
a
,
b
,
c
)
{
2
const
x
=
{...
a
};
3
x
[
b
]
=
c
[
b
];
4
x
[
1
+
2
]
=
c
[
b
*
4
];
5
}
6
7
export
const
FIXTURE_ENTRYPOINT
=
{
8
fn
:
foo
,
9
params
:
[
'
TodoAdd
'
],
10
isComponent
:
'
TodoAdd
'
,
11
};