11 lines
177 B
JavaScript
11 lines
177 B
JavaScript
|
// Let's not support identifiers defined after use for now.
|
||
|
function component(a) {
|
||
|
let y = function () {
|
||
|
x |> m(%);
|
||
|
};
|
||
|
let x = {
|
||
|
a
|
||
|
};
|
||
|
x |> m(%);
|
||
|
return y;
|
||
|
}
|