Changeset 1583 for cobra/trunk/Source/BinaryOpExpr.cobra
- Timestamp:
- 08/18/08 12:28:50 (5 months ago)
- Files:
-
- 1 modified
-
cobra/trunk/Source/BinaryOpExpr.cobra (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cobra/trunk/Source/BinaryOpExpr.cobra
r1577 r1583 356 356 _left.left.writeSharpDef(sw, false) 357 357 sw.write(', ') 358 sw.write(Utils.sharpStringLiteralFor( Utils.capped((_left.right to MemberExpr).name)))358 sw.write(Utils.sharpStringLiteralFor((_left.right to MemberExpr).name.capped)) 359 359 sw.write(', ') 360 360 _right.writeSharpDef(sw) … … 1018 1018 _left.writeSharpDef(sw, not _left inherits DotExpr) 1019 1019 sw.write(', ') 1020 sw.write(Utils.sharpStringLiteralFor( Utils.capped(_right.name)))1020 sw.write(Utils.sharpStringLiteralFor(_right.name.capped)) 1021 1021 sw.write(')') 1022 1022 else if _right inherits CallExpr … … 1025 1025 _left.writeSharpDef(sw, not _left inherits DotExpr) 1026 1026 sw.write(', ') 1027 sw.write(Utils.sharpStringLiteralFor( Utils.capped(_right.name)))1027 sw.write(Utils.sharpStringLiteralFor(_right.name.capped)) 1028 1028 for arg in _right.args 1029 1029 sw.write(', ')
