From 2bfdccc236c36f583724c9e50b4267cf17fcef5d Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sun, 16 Jun 2013 20:07:38 -0400 Subject: [PATCH] mixin template instead of string for scope resolution --- rpc.d | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/rpc.d b/rpc.d index 83a9f3d..0b82abb 100644 --- a/rpc.d +++ b/rpc.d @@ -260,11 +260,11 @@ final public inout(ubyte)[] deserializeInto(T)(inout(ubyte)[] buffer, ref T s) { return buffer; } -auto makeNetworkClient(Interface)(string serverHost, ushort serverPort) { - static string createClass() { +mixin template NetworkClient(Interface) { + private static string createClass() { // this doesn't actually inherit from the interface because // the return value needs to be handled async - string code = `final class Class /*: ` ~ Interface.stringof ~ `*/ {`; + string code;// = `final class Class /*: ` ~ Interface.stringof ~ `*/ {`; code ~= "\n\timport std.socket;"; code ~= "\n\tprivate Socket socket;"; code ~= "\n\tprivate void delegate(const(ubyte)[] buffer)[uint] onSuccesses;"; @@ -406,16 +406,12 @@ auto makeNetworkClient(Interface)(string serverHost, ushort serverPort) { code ~= "\n"; } - code ~= `}`; + //code ~= `}`; return code; } //pragma(msg, createClass()); // for debugging help - #line 363 mixin(createClass()); - #line 365 - - return new Class(serverHost, serverPort); } // the protocol is: