Show
Ignore:
Timestamp:
12/10/07 20:04:18 (12 months ago)
Author:
dlo
Message:

[kp6] fixed infix space problem

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • v6/v6-KindaPerl6/src/KindaPerl6/Visitor/Emit/Perl6.pm

    r19148 r19153  
    251251class Apply { 
    252252    method emit_perl6 { 
    253         return '(' ~ $.code.emit_perl6 ~ ' (' ~ (@.arguments.>>emit_perl6).join(', ') ~ '))'; 
     253        # WARNING: Putting white spaces in here, will mess up the subroutine calls 
     254        return '(' ~ $.code.emit_perl6 ~ '(' ~ (@.arguments.>>emit_perl6).join(', ') ~ '))'; 
    254255    } 
    255256}