Yes it's #fromExpression:
Indeed
For iv assignment, you should put metalinks on the assignment node.
So it should be something like that:
YourClass methods do: [ :method |
method ast
forAllNodes: [ :node | node isVariable and: [node isRead and: [ node isInstance ] ] ]
putAfter: [ RFMetalink fromExpression: 'Transcript crShow: ''iv read''' ];
forAllNodes: [ :node | node isAssignment and: [ node variable isInstance ] ]
putAfter: [ RFMetalink fromExpression: 'Transcript crShow: ''iv written''' ];
installWrapper ]