20 lines
400 B
JavaScript
20 lines
400 B
JavaScript
import {makeObject_Primitives} from 'shared-runtime';
|
|
|
|
function Component(props) {
|
|
let lastItem = null;
|
|
const items = [makeObject_Primitives(), makeObject_Primitives()];
|
|
for (const x of items) {
|
|
lastItem = x;
|
|
}
|
|
if (lastItem != null) {
|
|
lastItem.a += 1;
|
|
}
|
|
return items;
|
|
}
|
|
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: Component,
|
|
params: [{}],
|
|
sequentialRenders: [{}, {}, {}],
|
|
};
|