Jump to page: 1 2
Thread overview
[Issue 19292] Mixin expressions should take an argument list the same as pragma(msg) does
Oct 08, 2018
Walter Bright
Oct 08, 2018
Walter Bright
Oct 08, 2018
Walter Bright
Oct 09, 2018
Walter Bright
Nov 02, 2018
Marco Leise
Jan 20, 2020
FeepingCreature
Apr 02, 2021
Dlang Bot
October 08, 2018
https://issues.dlang.org/show_bug.cgi?id=19292

--- Comment #1 from Walter Bright <bugzilla@digitalmars.com> ---
Test case:

int test() {
    return mixin("1", 2);
}

void testit() {
    static assert(test() == 12);
}

--
October 08, 2018
https://issues.dlang.org/show_bug.cgi?id=19292

--- Comment #2 from Walter Bright <bugzilla@digitalmars.com> ---
https://github.com/dlang/dmd/pull/8808

--
October 08, 2018
https://issues.dlang.org/show_bug.cgi?id=19292

--- Comment #3 from github-bugzilla@puremagic.com ---
Commits pushed to master at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/13a3a7141ef3eafab2f2c588d488bd109156d8f8 fix Issue 19292 - Mixin expressions should take an argument list the same as pragma(msg) does

https://github.com/dlang/dmd/commit/93698003bd2d5c3299e13410f8f001031c36c88b Merge pull request #8808 from WalterBright/fix19192

fix Issue 19292 - Mixin expressions should take an argument list the …

--
October 08, 2018
https://issues.dlang.org/show_bug.cgi?id=19292

github-bugzilla@puremagic.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--
October 08, 2018
https://issues.dlang.org/show_bug.cgi?id=19292

--- Comment #4 from Walter Bright <bugzilla@digitalmars.com> ---
For Mixin Statements:

https://github.com/dlang/dmd/pull/8809

--
October 09, 2018
https://issues.dlang.org/show_bug.cgi?id=19292

--- Comment #5 from Walter Bright <bugzilla@digitalmars.com> ---
https://github.com/dlang/dmd/pull/8813 for Mixin Declarations

--
October 09, 2018
https://issues.dlang.org/show_bug.cgi?id=19292

--- Comment #6 from github-bugzilla@puremagic.com ---
Commits pushed to master at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/95133cf592c8415c4b28b8193e09f4c933a00178 fix Issue 19292 - Mixin expressions should take an argument list the same as pragma(msg) does

https://github.com/dlang/dmd/commit/2b68951f210e003ed447f482ebb41b7d134e4045 Merge pull request #8809 from WalterBright/fix19292-2

fix Issue 19292 part 2 - Mixin statements should take an argument list the …

--
October 13, 2018
https://issues.dlang.org/show_bug.cgi?id=19292

--- Comment #7 from github-bugzilla@puremagic.com ---
Commits pushed to master at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/51b5d2197721d8d5c3f8057da4c28ffa861bcab6 fix Issue 19292 part 3 - Mixin Declarations

https://github.com/dlang/dmd/commit/4ecb04ba590f543927365d53d2e1d274b9333e4d Merge pull request #8813 from WalterBright/fix19292-3

fix Issue 19292 part 3 - Mixin Declarations

--
October 14, 2018
https://issues.dlang.org/show_bug.cgi?id=19292

--- Comment #8 from github-bugzilla@puremagic.com ---
Commit pushed to master at https://github.com/dlang/dlang.org

https://github.com/dlang/dlang.org/commit/2b1e8ce197ad2f0adb7454b270a811ea41f0942b Merge pull request #2485 from WalterBright/mixin-args

fix Issue 19292 - Mixin expressions should take an argument list

--
November 02, 2018
https://issues.dlang.org/show_bug.cgi?id=19292

Marco Leise <Marco.Leise@gmx.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |Marco.Leise@gmx.de

--- Comment #9 from Marco Leise <Marco.Leise@gmx.de> ---
I like it! Really pargma-tic and will optimize many uses of mixin.

--
« First   ‹ Prev
1 2