Issue 13285: Page 103: Associations Section 8.2.2.23 InstantiationExp (qvt-rtf) Source: Open Canarias, SL (Mr. Adolfo Sanchez-Barbudo Herrera, nobody) Nature: Revision Severity: Minor Summary: Problem's text: // column := self.attribute->forEach new(a) Column(a.name,a.type.name); discussion: the foreach exp is not well written: suggestion: replace the text above by "// column := self.attribute->forEach(a) { new Column(a.name,a.type.name) }; Resolution: yes Revised Text: In 8.2.2. 23 InstantiationExp replace // column := self.attribute->forEach new(a) Column(a.name,a.type.name); by // column := self.attribute->forEach(a) { new Column(a.name,a.type.name); } Actions taken: January 15, 2009: received issue July 15, 2014: closed issue Discussion: End of Annotations:===== s is issue # 13285 Page 103: Associations Section 8.2.2.23 InstantiationExp Problem's text: // column := self.attribute->forEach new(a) Column(a.name,a.type.name); discussion: the foreach exp is not well written: suggestion: replace the text above by "// column := self.attribute->forEach(a) { new Column(a.name,a.type.name) };