[Issue 6185] UFCS doesn't work with function imports

2013-01-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6185 yebblies yebbl...@gmail.com changed: What|Removed |Added CC||r.97...@gmail.com ---

[Issue 6185] UFCS doesn't work with function imports

2013-01-02 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6185 yebblies yebbl...@gmail.com changed: What|Removed |Added CC||stas...@yahoo.com ---

[Issue 6185] UFCS doesn't work with function imports

2012-12-27 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6185 Andrej Mitrovic andrej.mitrov...@gmail.com changed: What|Removed |Added CC|

[Issue 6185] UFCS doesn't work with function imports

2012-01-31 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6185 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added CC|

[Issue 6185] UFCS doesn't work with function imports

2012-01-31 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6185 Walter Bright bugzi...@digitalmars.com changed: What|Removed |Added CC|

[Issue 6185] UFCS doesn't work with function imports

2012-01-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6185 --- Comment #6 from Kenji Hara k.hara...@gmail.com 2012-01-24 05:58:30 PST --- (In reply to comment #5) (In reply to comment #4) Ah, sorry, it is my mistake. Replace 'toUTF16' to 'toUTF16z'. What's bad in rewriting it as toUTF16z(foo)?

[Issue 6185] UFCS doesn't work with function imports

2012-01-24 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6185 --- Comment #7 from Kenji Hara k.hara...@gmail.com 2012-01-24 06:01:13 PST --- (In reply to comment #2) Before 2.053, foo.toUTF16z is rewritten to toUTF16(foo); After 2.054, it is rewitten to .toUTF16(foo); Therefore current D2 requires

[Issue 6185] UFCS doesn't work with function imports

2012-01-22 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6185 --- Comment #2 from Kenji Hara k.hara...@gmail.com 2012-01-22 05:30:13 PST --- Before 2.053, foo.toUTF16z is rewritten to toUTF16(foo); After 2.054, it is rewitten to .toUTF16(foo); Therefore current D2 requires module level function for UFCS.

[Issue 6185] UFCS doesn't work with function imports

2012-01-22 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6185 --- Comment #3 from bearophile_h...@eml.cc 2012-01-22 07:07:32 PST --- (In reply to comment #2) Before 2.053, foo.toUTF16z is rewritten to toUTF16(foo); After 2.054, it is rewitten to .toUTF16(foo); What's bad in rewriting it as

[Issue 6185] UFCS doesn't work with function imports

2012-01-22 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6185 --- Comment #4 from Kenji Hara k.hara...@gmail.com 2012-01-22 08:07:51 PST --- (In reply to comment #3) (In reply to comment #2) Before 2.053, foo.toUTF16z is rewritten to toUTF16(foo); After 2.054, it is rewitten to .toUTF16(foo);

[Issue 6185] UFCS doesn't work with function imports

2012-01-22 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6185 --- Comment #5 from bearophile_h...@eml.cc 2012-01-22 09:05:49 PST --- (In reply to comment #4) Ah, sorry, it is my mistake. Replace 'toUTF16' to 'toUTF16z'. What's bad in rewriting it as toUTF16z(foo)? -- Configure issuemail:

[Issue 6185] UFCS doesn't work with function imports

2012-01-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=6185 bearophile_h...@eml.cc changed: What|Removed |Added CC||bearophile_h...@eml.cc ---