Changeset 1598 for cobra/trunk/Source/SharpGenerator.cobra
- Timestamp:
- 08/28/08 06:40:46 (4 months ago)
- Files:
-
- 1 modified
-
cobra/trunk/Source/SharpGenerator.cobra (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cobra/trunk/Source/SharpGenerator.cobra
r1591 r1598 426 426 427 427 def writeSharpDef(sw as SharpWriter, parens as bool) is override 428 if parens, sw.write('(')429 428 if _helperMethod 430 429 sw.write(_helperMethod.name + '(') … … 438 437 sw.write(')') 439 438 else 439 if parens, sw.write('(') 440 440 expr = _expr 441 441 isMethodSig = false … … 496 496 .writeSharpArgs(sw, ', ') 497 497 sw.write(')') 498 if parens, sw.write(')')498 if parens, sw.write(')') 499 499 500 500 def writeSharpArgs(sw as SharpWriter)
