Show
Ignore:
Timestamp:
08/18/08 12:28:50 (5 months ago)
Author:
Chuck.Esterbrook
Message:

Code cleanup.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cobra/trunk/Source/BinaryOpExpr.cobra

    r1577 r1583  
    356356                                        _left.left.writeSharpDef(sw, false) 
    357357                                        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)) 
    359359                                        sw.write(', ') 
    360360                                        _right.writeSharpDef(sw) 
     
    10181018                                _left.writeSharpDef(sw, not _left inherits DotExpr) 
    10191019                                sw.write(', ') 
    1020                                 sw.write(Utils.sharpStringLiteralFor(Utils.capped(_right.name))) 
     1020                                sw.write(Utils.sharpStringLiteralFor(_right.name.capped)) 
    10211021                                sw.write(')') 
    10221022                        else if _right inherits CallExpr 
     
    10251025                                _left.writeSharpDef(sw, not _left inherits DotExpr) 
    10261026                                sw.write(', ') 
    1027                                 sw.write(Utils.sharpStringLiteralFor(Utils.capped(_right.name))) 
     1027                                sw.write(Utils.sharpStringLiteralFor(_right.name.capped)) 
    10281028                                for arg in _right.args 
    10291029                                        sw.write(', ')