Search

September 19, 2010
Learn »
...foreach on that structure and bind the params, etc.

First try (Fail-1):

// ----------------------------------------
auto selector...
September 04, 2010
DMD »
...if (global.params.mapfile)
-        cmdbuf.writestring(global.params.mapfile);
+        writeFilename(&cmdbuf, global.params.mapfile);
     else...
September 03, 2010
DMD »
...break;
        -:  668:            case TOKinvariant:
    #####:  669:                if (!global.params.useDeprecated)
    #####:  670:                    error("use of 'invariant' rather...
August 27, 2010
Phobos »
...ve already had to hack the template params so shared vs. unshared concrete types would...
August 27, 2010
Issues »
...429,13 @@
         sc->module->toModuleAssert();
     }

+    if (/*global.params.useUnitTests &&*/ sc->module)
+    {
+        // Generate this function as...
August 15, 2010
General »
...two arguments and returning an integer value.
       * Params:
       *    a = an integer argument.
       *    s = a constant...
August 09, 2010
Beta »
...if TARGET_OSX
    global.params.pic = 1;
#endif

[...]

    if (global.params.pic)
        VersionCondition::addPredefinedGlobalIdent("D...
August 06, 2010
General »
...that are passed to it (out/ref params), without having to inspect the function signature...
August 05, 2010
General »
...types;          // types of parameters
    alias ParameterStorageClassTuple!(func) params; // storage class of
parameters

    string declString, callString...
July 23, 2010
Learn »
...rvalue = replace(a.front, '+', ' ');
    params[lvalue] = rvalue;
    a.popFront;
    assert (a.empty);
}
return params;
}

Tomek
119 120 121 122 123 124 125 126 127 128 129
Next ›   Last »