import {makeObject_Primitives, Stringify} from 'shared-runtime'; function Example(props) { const object = props.object; const f = () => { // The receiver maybe-aliases into the return const obj = object.makeObject(); obj.property = props.value; return obj; }; const obj = f(); return ; } export const FIXTURE_ENTRYPOINT = { fn: Example, params: [{object: {makeObject: makeObject_Primitives}, value: 42}], };