save progress
This commit is contained in:
parent
220dcb0445
commit
f34407ce31
File diff suppressed because it is too large
Load Diff
|
|
@ -55,6 +55,25 @@ void secondPass(SemanticSymbol* currentSymbol, Scope* moduleScope, ref ModuleCac
|
||||||
resolveType(currentSymbol.acSymbol, currentSymbol.typeLookups,
|
resolveType(currentSymbol.acSymbol, currentSymbol.typeLookups,
|
||||||
moduleScope, cache);
|
moduleScope, cache);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (currentSymbol.acSymbol.type && currentSymbol.typeLookups.length > 0)
|
||||||
|
{
|
||||||
|
TypeLookup* lookup = currentSymbol.typeLookups.front;
|
||||||
|
if (lookup.ctx.root)
|
||||||
|
{
|
||||||
|
auto type = currentSymbol.acSymbol.type;
|
||||||
|
if (type.kind == structName || type.kind == className)
|
||||||
|
{
|
||||||
|
int depth;
|
||||||
|
resolveTemplate(currentSymbol.acSymbol, type, lookup, lookup.ctx.root, moduleScope, cache, depth);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
warning("no type: ", currentSymbol.acSymbol.name," ", currentSymbol.acSymbol.kind);
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case importSymbol:
|
case importSymbol:
|
||||||
if (currentSymbol.acSymbol.type is null)
|
if (currentSymbol.acSymbol.type is null)
|
||||||
|
|
@ -76,6 +95,7 @@ void secondPass(SemanticSymbol* currentSymbol, Scope* moduleScope, ref ModuleCac
|
||||||
case dummy:
|
case dummy:
|
||||||
case templateName:
|
case templateName:
|
||||||
case mixinTemplateName:
|
case mixinTemplateName:
|
||||||
|
case argTmpParam:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -94,93 +114,162 @@ void secondPass(SemanticSymbol* currentSymbol, Scope* moduleScope, ref ModuleCac
|
||||||
resolveMixinTemplates(currentSymbol.acSymbol, currentSymbol.typeLookups,
|
resolveMixinTemplates(currentSymbol.acSymbol, currentSymbol.typeLookups,
|
||||||
moduleScope, cache);
|
moduleScope, cache);
|
||||||
break;
|
break;
|
||||||
case variableName:
|
|
||||||
case functionName:
|
|
||||||
if (currentSymbol.acSymbol.tmplArgNames.length > 0 && currentSymbol.acSymbol.type)
|
|
||||||
{
|
|
||||||
auto tArgNames = currentSymbol.acSymbol.tmplArgNames;
|
|
||||||
auto type = currentSymbol.acSymbol.type;
|
|
||||||
if (type.kind == structName || type.kind == className)
|
|
||||||
{
|
|
||||||
int depth;
|
|
||||||
resolveTemplate(currentSymbol.acSymbol, type, tArgNames, moduleScope, cache, depth);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
warning("no type: ", currentSymbol.acSymbol.name," ", currentSymbol.acSymbol.kind);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
DSymbol* createTypeWithTemplateArgs(DSymbol* type, TypeLookup* lookup, VariableContext.TypeInstance* ti, ref ModuleCache cache, Scope* moduleScope, ref int depth, DSymbol*[string] m = null)
|
||||||
|
{
|
||||||
|
warning("processing type: ", type.name, " ", ti.chain, " ", ti.args);
|
||||||
|
DSymbol* newType = GCAllocator.instance.make!DSymbol("", CompletionKind.dummy, null);
|
||||||
|
newType.name = type.name;
|
||||||
|
newType.kind = type.kind;
|
||||||
|
newType.qualifier = type.qualifier;
|
||||||
|
newType.protection = type.protection;
|
||||||
|
newType.symbolFile = type.symbolFile;
|
||||||
|
newType.doc = type.doc;
|
||||||
|
newType.callTip = type.callTip;
|
||||||
|
DSymbol*[string] mapping;
|
||||||
|
|
||||||
|
if (m)
|
||||||
|
foreach(k,v; m)
|
||||||
|
{
|
||||||
|
mapping[k] = v;
|
||||||
|
}
|
||||||
|
|
||||||
|
int[string] mapping_index;
|
||||||
|
int count = 0;
|
||||||
|
if (ti.args.length > 0)
|
||||||
|
{
|
||||||
|
warning("hard args, build mapping");
|
||||||
|
foreach(part; type.opSlice())
|
||||||
|
{
|
||||||
|
if (part.kind == CompletionKind.typeTmpParam)
|
||||||
|
{
|
||||||
|
scope(exit) count++;
|
||||||
|
|
||||||
|
warning("building mapping for: ", part.name, " chain: ", ti.args[count].chain);
|
||||||
|
auto key = part.name;
|
||||||
|
|
||||||
|
DSymbol* first;
|
||||||
|
foreach(i, crumb; ti.args[count].chain)
|
||||||
|
{
|
||||||
|
if (i == 0)
|
||||||
|
{
|
||||||
|
auto result = moduleScope.getSymbolsAtGlobalScope(istring(crumb));
|
||||||
|
if (result.length == 0)
|
||||||
|
{
|
||||||
|
error("can't find symbol: ", crumb);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
first = result[0];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
first = first.getFirstPartNamed(istring(crumb));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
mapping_index[key] = count;
|
||||||
|
if (first is null)
|
||||||
|
{
|
||||||
|
error("can't find type for mapping: ", part.name);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
warning(" map: ", key ,"->", first.name);
|
||||||
|
|
||||||
|
mapping[key] = createTypeWithTemplateArgs(first, lookup, ti.args[count], cache, moduleScope, depth, m ? m : mapping);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
string[] T_names;
|
||||||
|
|
||||||
|
foreach(part; type.opSlice())
|
||||||
|
{
|
||||||
|
if (part.kind == CompletionKind.typeTmpParam)
|
||||||
|
{
|
||||||
|
warning(" #", count, " ", part.name);
|
||||||
|
T_names ~= part.name;
|
||||||
|
}
|
||||||
|
else if (part.type && part.type.kind == CompletionKind.typeTmpParam)
|
||||||
|
{
|
||||||
|
DSymbol* newPart = GCAllocator.instance.make!DSymbol(part.name, part.kind, null);
|
||||||
|
newPart.qualifier = part.qualifier;
|
||||||
|
newPart.protection = part.protection;
|
||||||
|
newPart.symbolFile = part.symbolFile;
|
||||||
|
newPart.doc = part.doc;
|
||||||
|
newPart.callTip = part.callTip;
|
||||||
|
newPart.ownType = true;
|
||||||
|
|
||||||
|
if (part.type.name in mapping)
|
||||||
|
{
|
||||||
|
newPart.type = mapping[part.type.name];
|
||||||
|
warning(" mapping found: ", part.type.name," -> ", newPart.type.name);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if (m && part.type.name in m)
|
||||||
|
{
|
||||||
|
newPart.type = m[part.type.name];
|
||||||
|
warning(" mapping found: ", part.type.name," -> ", newPart.type.name);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
error(" mapping not found: ", part.type.name);
|
||||||
|
|
||||||
|
newType.addChild(newPart, true);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (depth < 50)
|
||||||
|
if (part.type && part.kind == CompletionKind.variableName)
|
||||||
|
foreach(partPart; part.type.opSlice())
|
||||||
|
{
|
||||||
|
if (partPart.kind == CompletionKind.typeTmpParam)
|
||||||
|
{
|
||||||
|
|
||||||
|
warning("go agane ", part.name, " ", part.type.name, " with arg: ", ti.chain," Ts: ", T_names);
|
||||||
|
|
||||||
|
foreach(arg; ti.args)
|
||||||
|
{
|
||||||
|
warning(" >", arg.chain, " ", arg.args);
|
||||||
|
}
|
||||||
|
//resolveTemplate(part, part.type, lookup, ti, moduleScope, cache, depth, mapping);
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
newType.addChild(part, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return newType;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Resolve template arguments
|
* Resolve template arguments
|
||||||
*/
|
*/
|
||||||
void resolveTemplate(DSymbol* sym, DSymbol* type, scope const istring[] tmplArgNames, Scope* moduleScope, ref ModuleCache cache, ref int depth)
|
void resolveTemplate(DSymbol* variableSym, DSymbol* type, TypeLookup* lookup, VariableContext.TypeInstance* current, Scope* moduleScope, ref ModuleCache cache, ref int depth, DSymbol*[string] mapping = null)
|
||||||
{
|
{
|
||||||
depth += 1;
|
depth += 1;
|
||||||
if (tmplArgNames.length > 1) return;
|
|
||||||
auto argName = tmplArgNames[0];
|
|
||||||
auto result = moduleScope.getSymbolsAtGlobalScope(argName);
|
|
||||||
if (result.length > 0)
|
|
||||||
{
|
|
||||||
auto argSymbol = result[0];
|
|
||||||
DSymbol* newType = GCAllocator.instance.make!DSymbol("", CompletionKind.dummy, null);
|
|
||||||
newType.name = type.name;
|
|
||||||
newType.kind = type.kind;
|
|
||||||
newType.qualifier = type.qualifier;
|
|
||||||
newType.protection = type.protection;
|
|
||||||
newType.symbolFile = type.symbolFile;
|
|
||||||
newType.doc = type.doc;
|
|
||||||
newType.callTip = type.callTip;
|
|
||||||
|
|
||||||
DSymbol* currentT = null;
|
|
||||||
foreach(part; type.opSlice())
|
warning("resolving template for var: ", variableSym.name, " type: ", type.name, "depth: ", depth);
|
||||||
{
|
warning("current args: ");
|
||||||
if (part.kind == CompletionKind.typeTmpParam)
|
foreach(i, arg; current.args)
|
||||||
{
|
warning(" i: ", i, " ", arg.chain);
|
||||||
currentT = part;
|
DSymbol* newType = createTypeWithTemplateArgs(type, lookup, current, cache, moduleScope, depth, mapping);
|
||||||
}
|
|
||||||
else if (part.type && part.type.kind == CompletionKind.typeTmpParam)
|
|
||||||
{
|
|
||||||
DSymbol* newPart = GCAllocator.instance.make!DSymbol(part.name, part.kind, argSymbol);
|
|
||||||
newPart.qualifier = part.qualifier;
|
variableSym.type = newType;
|
||||||
newPart.protection = part.protection;
|
variableSym.ownType = true;
|
||||||
newPart.symbolFile = part.symbolFile;
|
|
||||||
newPart.doc = part.doc;
|
|
||||||
newPart.callTip = part.callTip;
|
|
||||||
newPart.type = argSymbol;
|
|
||||||
if (part.kind == CompletionKind.functionName)
|
|
||||||
{
|
|
||||||
if (part.type && part.type.kind == CompletionKind.typeTmpParam)
|
|
||||||
{
|
|
||||||
newPart.type = argSymbol;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
newType.addChild(newPart, true);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (part.tmplArgNames.length > 0)
|
|
||||||
{
|
|
||||||
auto innerArg = part.tmplArgNames[0];
|
|
||||||
if (innerArg == currentT.name)
|
|
||||||
{
|
|
||||||
if (depth < 50)
|
|
||||||
resolveTemplate(part, part.type, [argName], moduleScope, cache, depth);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
newType.addChild(part, false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
sym.type = newType;
|
|
||||||
sym.ownType = true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void resolveImport(DSymbol* acSymbol, ref TypeLookups typeLookups,
|
void resolveImport(DSymbol* acSymbol, ref TypeLookups typeLookups,
|
||||||
ref ModuleCache cache)
|
ref ModuleCache cache)
|
||||||
in
|
in
|
||||||
|
|
@ -521,13 +610,17 @@ void resolveTypeFromInitializer(DSymbol* symbol, TypeLookup* lookup,
|
||||||
auto crumbs = lookup.breadcrumbs[];
|
auto crumbs = lookup.breadcrumbs[];
|
||||||
foreach (crumb; crumbs)
|
foreach (crumb; crumbs)
|
||||||
{
|
{
|
||||||
|
warning("search: ", crumb);
|
||||||
if (i == 0)
|
if (i == 0)
|
||||||
{
|
{
|
||||||
currentSymbol = moduleScope.getFirstSymbolByNameAndCursor(
|
currentSymbol = moduleScope.getFirstSymbolByNameAndCursor(
|
||||||
symbolNameToTypeName(crumb), symbol.location);
|
symbolNameToTypeName(crumb), symbol.location);
|
||||||
|
|
||||||
if (currentSymbol is null)
|
if (currentSymbol is null)
|
||||||
return;
|
{
|
||||||
|
warning("return 0");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if (crumb == ARRAY_LITERAL_SYMBOL_NAME)
|
if (crumb == ARRAY_LITERAL_SYMBOL_NAME)
|
||||||
|
|
@ -589,12 +682,18 @@ void resolveTypeFromInitializer(DSymbol* symbol, TypeLookup* lookup,
|
||||||
{
|
{
|
||||||
typeSwap(currentSymbol);
|
typeSwap(currentSymbol);
|
||||||
if (currentSymbol is null )
|
if (currentSymbol is null )
|
||||||
return;
|
{
|
||||||
|
warning("return ", i);
|
||||||
|
return;
|
||||||
|
}
|
||||||
currentSymbol = currentSymbol.getFirstPartNamed(crumb);
|
currentSymbol = currentSymbol.getFirstPartNamed(crumb);
|
||||||
}
|
}
|
||||||
++i;
|
++i;
|
||||||
if (currentSymbol is null)
|
if (currentSymbol is null)
|
||||||
return;
|
{
|
||||||
|
warning("return ", i);
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
typeSwap(currentSymbol);
|
typeSwap(currentSymbol);
|
||||||
symbol.type = currentSymbol;
|
symbol.type = currentSymbol;
|
||||||
|
|
|
||||||
|
|
@ -104,6 +104,9 @@ enum CompletionKind : char
|
||||||
|
|
||||||
/// type template parameter when no constraint
|
/// type template parameter when no constraint
|
||||||
typeTmpParam = 'h',
|
typeTmpParam = 'h',
|
||||||
|
|
||||||
|
/// type template argument when no constraint
|
||||||
|
argTmpParam = 'H',
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -386,6 +389,11 @@ struct DSymbol
|
||||||
*/
|
*/
|
||||||
istring[] tmplArgNames;
|
istring[] tmplArgNames;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Template arguments symbols
|
||||||
|
*/
|
||||||
|
DSymbol*[] tmplArgs;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function parameter symbols
|
* Function parameter symbols
|
||||||
*/
|
*/
|
||||||
|
|
@ -431,7 +439,8 @@ struct DSymbol
|
||||||
mixin(bitfields!(bool, "ownType", 1,
|
mixin(bitfields!(bool, "ownType", 1,
|
||||||
bool, "skipOver", 1,
|
bool, "skipOver", 1,
|
||||||
bool, "isPointer", 1,
|
bool, "isPointer", 1,
|
||||||
ubyte, "", 5));
|
bool, "isAutoDeclaration", 1,
|
||||||
|
ubyte, "", 4));
|
||||||
// dfmt on
|
// dfmt on
|
||||||
|
|
||||||
/// Protection level for this symbol
|
/// Protection level for this symbol
|
||||||
|
|
|
||||||
|
|
@ -37,4 +37,20 @@ struct TypeLookup
|
||||||
UnrolledList!istring breadcrumbs;
|
UnrolledList!istring breadcrumbs;
|
||||||
/// The kind of type lookup
|
/// The kind of type lookup
|
||||||
TypeLookupKind kind;
|
TypeLookupKind kind;
|
||||||
|
/// To store information about template instances
|
||||||
|
VariableContext ctx;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
struct VariableContext
|
||||||
|
{
|
||||||
|
struct TypeInstance
|
||||||
|
{
|
||||||
|
string[] chain;
|
||||||
|
TypeInstance*[] args;
|
||||||
|
string name;
|
||||||
|
TypeInstance* parent;
|
||||||
|
}
|
||||||
|
TypeInstance* root;
|
||||||
|
int num;
|
||||||
}
|
}
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
identifiers
|
||||||
|
yo v Inner yo stdin 0
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
identifiers
|
||||||
|
yo_T v A yo_T stdin 0
|
||||||
|
yo_U v B yo_U stdin 0
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
struct Data
|
||||||
|
{
|
||||||
|
int inside_data;
|
||||||
|
Inner inner;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Inner
|
||||||
|
{
|
||||||
|
int inside_inner;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct AganeOne(T)
|
||||||
|
{
|
||||||
|
int inside_aganeone;
|
||||||
|
T yo;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct AganeTwo(T, U)
|
||||||
|
{
|
||||||
|
int inside_aganetwo;
|
||||||
|
T yo_T;
|
||||||
|
U yo_U;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Other(T)
|
||||||
|
{
|
||||||
|
int inside_other;
|
||||||
|
T what;
|
||||||
|
AganeOne!(T) agane_T;
|
||||||
|
AganeOne!(Inner) agane_inner;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct One(T){ T inside_one; }
|
||||||
|
|
||||||
|
struct Outter {
|
||||||
|
struct Two(T, U){ int inside_two; T agane_one; U agane_two; One!(T) one_agane_one; }
|
||||||
|
}
|
||||||
|
|
||||||
|
struct A{ int inside_a;}
|
||||||
|
struct B{ int inside_b;}
|
||||||
|
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
auto from_auto = Outter.Two!(
|
||||||
|
AganeOne!(Other!(Data)),
|
||||||
|
AganeTwo!(A, B)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
import std;
|
||||||
|
writeln(typeid(from_auto.agane_one.yo.agane_inner.yo));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,47 @@
|
||||||
|
struct Data
|
||||||
|
{
|
||||||
|
float inside_data;
|
||||||
|
Inner inner;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Inner
|
||||||
|
{
|
||||||
|
float inside_inner;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct AganeOne(T)
|
||||||
|
{
|
||||||
|
T yo;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct AganeTwo(T, U)
|
||||||
|
{
|
||||||
|
T yo_T;
|
||||||
|
U yo_U;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Other(T)
|
||||||
|
{
|
||||||
|
T what;
|
||||||
|
AganeOne!(T) agane_T;
|
||||||
|
AganeOne!(Inner) agane_inner;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct One(T){ T inside_one; }
|
||||||
|
|
||||||
|
struct Outter {
|
||||||
|
struct Two(T, U){ T agane_one; U agane_two; One!(T) one_agane_one; }
|
||||||
|
}
|
||||||
|
|
||||||
|
struct A{ int inside_a;}
|
||||||
|
struct B{ int inside_b;}
|
||||||
|
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
auto from_auto = Outter.Two!(
|
||||||
|
AganeOne!(Other!Data),
|
||||||
|
AganeTwo!(A, B)
|
||||||
|
);
|
||||||
|
from_auto.agane_two.yo
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,105 @@
|
||||||
|
struct Data
|
||||||
|
{
|
||||||
|
float inside_data;
|
||||||
|
Inner inner;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Inner
|
||||||
|
{
|
||||||
|
float inside_inner;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
struct AganeOne(T)
|
||||||
|
{
|
||||||
|
T yo;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct AganeTwo(T, U)
|
||||||
|
{
|
||||||
|
T yo_T;
|
||||||
|
U yo_U;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct Other(T)
|
||||||
|
{
|
||||||
|
T what;
|
||||||
|
AganeOne!(T) agane_T;
|
||||||
|
AganeOne!(Inner) agane_inner;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
struct MyTemplate(T)
|
||||||
|
{
|
||||||
|
T T_value;
|
||||||
|
Other!(T) other;
|
||||||
|
|
||||||
|
T get_this_value(T)()
|
||||||
|
{
|
||||||
|
return T_value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
struct Fat
|
||||||
|
{
|
||||||
|
struct Outter
|
||||||
|
{
|
||||||
|
struct Inner(T)
|
||||||
|
{
|
||||||
|
T from_inner_T;
|
||||||
|
}
|
||||||
|
int from_outter;
|
||||||
|
}
|
||||||
|
struct Other
|
||||||
|
{
|
||||||
|
int from_other;
|
||||||
|
}
|
||||||
|
struct Agane
|
||||||
|
{
|
||||||
|
int from_agane;
|
||||||
|
}
|
||||||
|
int from_fat;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct One(T){ T inside_one; }
|
||||||
|
|
||||||
|
struct Outter {
|
||||||
|
struct Two(T, U){ T agane_one; U agane_two; One!(T) one_agane_one; }
|
||||||
|
}
|
||||||
|
|
||||||
|
struct A{ int inside_a;}
|
||||||
|
struct B{ int inside_b;}
|
||||||
|
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
auto from_auto = Outter.Two!(
|
||||||
|
AganeOne!(Other!Data),
|
||||||
|
AganeTwo!(A, B)
|
||||||
|
);
|
||||||
|
|
||||||
|
// import std;
|
||||||
|
from_auto.agane_one.yo.agane_inner.y;
|
||||||
|
|
||||||
|
//writeln(typeid(from_auto.agane_one.yo.agane_inner));
|
||||||
|
//writeln(typeid(from_auto.agane_one.yo.agane_T));
|
||||||
|
//writeln(typeid(from_auto.agane_one.yo.what));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
Inner(IdentifierOrTemplateInstance)
|
||||||
|
|
||||||
|
[One, Two]
|
||||||
|
[Fat, Outter] [A, B]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
../../bin/dcd-client $1 file1.d --extended -c 688 > actual_1.txt
|
||||||
|
diff actual_1.txt expected_1.txt --strip-trailing-cr
|
||||||
|
|
||||||
|
|
||||||
|
../../bin/dcd-client $1 file2.d --extended -c 674 > actual_2.txt
|
||||||
|
diff actual_2.txt expected_2.txt --strip-trailing-cr
|
||||||
|
|
||||||
Loading…
Reference in New Issue