Sign in
webkit
/
WebKit
/
b0d7f9b249dd6483d6c7bc4f13c440c0842b7127
/
.
/
JSTests
/
modules
/
aliased-names
/
main.js
blob: 3033cf9daeecbbe862932f840b861352e6218686 [
file
] [
log
] [
blame
]
var
a
=
42
;
function
change
(
value
)
{
a
=
value
;
}
export
{
a
}
export
{
a as b
}
export
{
change
}