Thread overview | ||||||
---|---|---|---|---|---|---|
|
June 20, 2009 [Issue 3085] New: Cannot index tuple in declaration | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=3085 Summary: Cannot index tuple in declaration Product: D Version: 2.030 Platform: x86 OS/Version: All Status: NEW Keywords: patch, spec Severity: normal Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: rsinfu@gmail.com Created an attachment (id=400) --> (http://d.puremagic.com/issues/attachment.cgi?id=400) Patch (DMD 2.030) The current declaration syntax does not handle a qualified type with an intermediate segment which does tuple indexing. For example, the following does not compile: -------------------- import std.typetuple; template Trait(alias v) { alias typeof(v) Type; } alias TypeTuple!(Trait!(42)) List; List[0].Type var; // -> "no identifier for declarator List[0]" -------------------- The compiler cannot parse "List[0].Type" as a type. The attached patch enables the compiler to handle such intermediate tuple indexing with a slight change to the BasicType2 syntax: -------------------- BasicType2: * [ ] [ Expression ] [ Expression .. Expression ] [ Type ] delegate Parameters FunctionAttributes_opt function Parameters FunctionAttributes_opt . IdentifierList // !! Add this -------------------- -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
October 11, 2010 [Issue 3085] Cannot index tuple in declaration | ||||
---|---|---|---|---|
| ||||
Posted in reply to rsinfu@gmail.com | http://d.puremagic.com/issues/show_bug.cgi?id=3085 Manuel König <manuelk89@gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |samukha@voliacable.com --- Comment #1 from Manuel König <manuelk89@gmx.net> 2010-10-11 12:36:18 PDT --- *** Issue 1503 has been marked as a duplicate of this issue. *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
October 11, 2010 [Issue 3085] Cannot index tuple in declaration | ||||
---|---|---|---|---|
| ||||
Posted in reply to rsinfu@gmail.com | http://d.puremagic.com/issues/show_bug.cgi?id=3085 Manuel König <manuelk89@gmx.net> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |shro8822@vandals.uidaho.edu --- Comment #2 from Manuel König <manuelk89@gmx.net> 2010-10-11 12:42:21 PDT --- *** Issue 2446 has been marked as a duplicate of this issue. *** -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
January 23, 2012 [Issue 3085] Cannot index tuple in declaration | ||||
---|---|---|---|---|
| ||||
Posted in reply to rsinfu@gmail.com | http://d.puremagic.com/issues/show_bug.cgi?id=3085 Walter Bright <bugzilla@digitalmars.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bugzilla@digitalmars.com Severity|normal |enhancement -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation