Re: [Vala] [PATCH] Implement alias functionality for 'using' directive

2011-04-04 Thread Treviño
Il giorno dom, 03/04/2011 alle 18.11 -0500, Jim Peters ha scritto: Required to disambiguate symbol references in case of matches from multiple 'using' statements. Great! ;) ___ vala-list mailing list vala-list@gnome.org

Re: [Vala] [PATCH] Implement alias functionality for 'using' directive

2011-04-04 Thread Jürg Billeter
On Sun, 2011-04-03 at 18:16 -0500, Jim Peters wrote: Jim Peters wrote: Required to disambiguate symbol references in case of matches from multiple 'using' statements. I've implemented the alias functionality missing from 'using'. It took 3 tries before I found a way that worked and

Re: [Vala] [PATCH] Implement alias functionality for 'using' directive

2011-04-04 Thread Jim Peters
Jürg Billeter wrote: This sounds great. I'll review the patch as soon as possible, but it might make sense to attach it to a bug report in Bugzilla so that it doesn't get lost in the mail. Hopefully, I'll soon have some time for patch review in general. Thanks. It is bug #646713. Jim --

[Vala] [PATCH] Implement alias functionality for 'using' directive

2011-04-03 Thread Jim Peters
Required to disambiguate symbol references in case of matches from multiple 'using' statements. --- tests/namespaces/aliases.vala | 30 vala/valacodewriter.vala |6 ++- vala/valamemberaccess.vala| 26 +++ vala/valaparser.vala | 17 ++-

Re: [Vala] [PATCH] Implement alias functionality for 'using' directive

2011-04-03 Thread Jim Peters
Jim Peters wrote: Required to disambiguate symbol references in case of matches from multiple 'using' statements. I've implemented the alias functionality missing from 'using'. It took 3 tries before I found a way that worked and didn't upset the existing code too much. As Vala tries to