libdparse update
This commit is contained in:
parent
2ce4f6a8d3
commit
3d50a8beab
3
makefile
3
makefile
|
@ -11,7 +11,7 @@ GDC := gdc
|
||||||
LDC := ldc2
|
LDC := ldc2
|
||||||
|
|
||||||
githash:
|
githash:
|
||||||
git log -n 1 --oneline | cut -f 1 -d ' ' > githash.txt
|
git log -1 --format="%H" > githash.txt
|
||||||
|
|
||||||
report:
|
report:
|
||||||
dscanner --report src > dscanner-report.json
|
dscanner --report src > dscanner-report.json
|
||||||
|
@ -133,7 +133,6 @@ debugserver: githash
|
||||||
rm -f containers/src/std/allocator.d
|
rm -f containers/src/std/allocator.d
|
||||||
${DMD} ${SERVER_SRC} ${DEBUG_SERVER_FLAGS}
|
${DMD} ${SERVER_SRC} ${DEBUG_SERVER_FLAGS}
|
||||||
|
|
||||||
|
|
||||||
gdcclient: githash
|
gdcclient: githash
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
rm -f containers/src/std/allocator.d
|
rm -f containers/src/std/allocator.d
|
||||||
|
|
|
@ -174,8 +174,9 @@ final class FirstPass : ASTVisitor
|
||||||
override void visit(const BaseClass bc)
|
override void visit(const BaseClass bc)
|
||||||
{
|
{
|
||||||
// Log.trace(__FUNCTION__, " ", typeof(bc).stringof);
|
// Log.trace(__FUNCTION__, " ", typeof(bc).stringof);
|
||||||
currentSymbol.baseClasses.insert(iotcToStringArray(symbolAllocator,
|
if (bc.type2.identifierOrTemplateChain !is null)
|
||||||
bc.identifierOrTemplateChain));
|
currentSymbol.baseClasses.insert(iotcToStringArray(symbolAllocator,
|
||||||
|
bc.type2.identifierOrTemplateChain));
|
||||||
}
|
}
|
||||||
|
|
||||||
override void visit(const VariableDeclaration dec)
|
override void visit(const VariableDeclaration dec)
|
||||||
|
|
Loading…
Reference in New Issue