Changeset 19153 for v6/v6-KindaPerl6/src/KindaPerl6/Visitor/Emit/Perl6.pm
- Timestamp:
- 12/10/07 20:04:18 (12 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
v6/v6-KindaPerl6/src/KindaPerl6/Visitor/Emit/Perl6.pm
r19148 r19153 251 251 class Apply { 252 252 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(', ') ~ '))'; 254 255 } 255 256 }
