Search

December 10, 2018
General »
...just hoist those variables up to the outer scope rather than moving the mixin (I...
December 10, 2018
General »
...s in my scope and not an outer one.  That's worse than making sure...
December 10, 2018
General »
...not just global scope, it's any outer scope. Examples:

class
{
    mixin(enableInterpolate); // BAD
    void...
November 23, 2018
General »
...InnerAccess();

         System.out.println("Inner member from outer: " + innerData._innerDataMember);
         innerAccess.accessMembers(main, innerData);
     }
 }

class...
November 22, 2018
General »
...Main main, InnerData innerData)
        {
            System.out.println("Outer member from inner: " + main._mainMember);
            System.out...
November 14, 2018
General »
...use a subrange to iterate through the outer range.

And as Steven Schveighoffer mentioned, generalizing...
November 09, 2018
Issues »
...context pointer to the closure or the outer functions stack frame to '__capture'

https://github...
November 09, 2018
Issues »
...the struct, but the capture of the outer function:

(00004C) S_GPROC32: [0000:00000000], Cb...
November 06, 2018
Learn »
The same or an outer scope. It's also invalid to write:

goto Y;
{
  int...
November 04, 2018
Issues »
...e922ee78128b87e4fad757c51d58ec3e78d3f9c7 fix Issue 19318 - Variables captured from outer functions not visible in debugger

create struct...
28 29 30 31 32 33 34 35 36 37 38 39
Next ›   Last »