diff --git a/client.d b/client.d index df76258..2772b4a 100644 --- a/client.d +++ b/client.d @@ -179,7 +179,7 @@ int main(string[] args) void printHelp(string programName) { - writefln( + writefln( ` Usage: %1$s [Options] [FILENAME] diff --git a/constants.d b/constants.d index d562754..9c78779 100644 --- a/constants.d +++ b/constants.d @@ -24,9 +24,9 @@ module constants; * Pragma arguments */ immutable string[] pragmas = [ - "lib", - "msg", - "startaddress" + "lib", + "msg", + "startaddress" ]; /** @@ -45,157 +45,157 @@ immutable string[] linkages = [ * Traits arguments */ immutable string[] traits = [ - "allMembers", - "classInstanceSize", - "compiles", - "derivedMembers", - "getAttributes", - "getMember", - "getOverloads", - "getProtection", - "getVirtualFunctions", - "getVirtualMethods", - "hasMember", - "identifier", - "isAbstractClass", - "isAbstractFunction", - "isArithmetic", - "isAssociativeArray", - "isFinalClass", - "isFinalFunction", - "isFloating", - "isIntegral", - "isLazy", - "isNested", - "isOut", - "isPOD", - "isRef", - "isSame", - "isScalar", - "isStaticArray", - "isStaticFunction", - "isUnsigned", - "isVirtualFunction", - "isVirtualMethod", - "parent" + "allMembers", + "classInstanceSize", + "compiles", + "derivedMembers", + "getAttributes", + "getMember", + "getOverloads", + "getProtection", + "getVirtualFunctions", + "getVirtualMethods", + "hasMember", + "identifier", + "isAbstractClass", + "isAbstractFunction", + "isArithmetic", + "isAssociativeArray", + "isFinalClass", + "isFinalFunction", + "isFloating", + "isIntegral", + "isLazy", + "isNested", + "isOut", + "isPOD", + "isRef", + "isSame", + "isScalar", + "isStaticArray", + "isStaticFunction", + "isUnsigned", + "isVirtualFunction", + "isVirtualMethod", + "parent" ]; /** * Scope conditions */ immutable string[] scopes = [ - "exit", - "failure", - "success" + "exit", + "failure", + "success" ]; /** * Predefined version identifiers */ immutable string[] versions = [ - "AArch64", - "AIX", - "all", - "Alpha", - "Alpha_HardFloat", - "Alpha_SoftFloat", - "Android", - "ARM", - "ARM_HardFloat", - "ARM_SoftFloat", - "ARM_SoftFP", - "ARM_Thumb", - "assert", - "BigEndian", - "BSD", - "Cygwin", - "D_Coverage", - "D_Ddoc", - "D_HardFloat", - "DigitalMars", - "D_InlineAsm_X86", - "D_InlineAsm_X86_64", - "D_LP64", - "D_NoBoundsChecks", - "D_PIC", - "DragonFlyBSD", - "D_SIMD", - "D_SoftFloat", - "D_Version2", - "D_X32", - "FreeBSD", - "GNU", - "Haiku", - "HPPA", - "HPPA64", - "Hurd", - "IA64", - "LDC", - "linux", - "LittleEndian", - "MIPS32", - "MIPS64", - "MIPS_EABI", - "MIPS_HardFloat", - "MIPS_N32", - "MIPS_N64", - "MIPS_O32", - "MIPS_O64", - "MIPS_SoftFloat", - "NetBSD", - "none", - "OpenBSD", - "OSX", - "Posix", - "PPC", - "PPC64", - "PPC_HardFloat", - "PPC_SoftFloat", - "S390", - "S390X", - "SDC", - "SH", - "SH64", - "SkyOS", - "Solaris", - "SPARC", - "SPARC64", - "SPARC_HardFloat", - "SPARC_SoftFloat", - "SPARC_V8Plus", - "SysV3", - "SysV4", - "unittest", - "Win32", - "Win64", - "Windows", - "X86", - "X86_64" + "AArch64", + "AIX", + "all", + "Alpha", + "Alpha_HardFloat", + "Alpha_SoftFloat", + "Android", + "ARM", + "ARM_HardFloat", + "ARM_SoftFloat", + "ARM_SoftFP", + "ARM_Thumb", + "assert", + "BigEndian", + "BSD", + "Cygwin", + "D_Coverage", + "D_Ddoc", + "D_HardFloat", + "DigitalMars", + "D_InlineAsm_X86", + "D_InlineAsm_X86_64", + "D_LP64", + "D_NoBoundsChecks", + "D_PIC", + "DragonFlyBSD", + "D_SIMD", + "D_SoftFloat", + "D_Version2", + "D_X32", + "FreeBSD", + "GNU", + "Haiku", + "HPPA", + "HPPA64", + "Hurd", + "IA64", + "LDC", + "linux", + "LittleEndian", + "MIPS32", + "MIPS64", + "MIPS_EABI", + "MIPS_HardFloat", + "MIPS_N32", + "MIPS_N64", + "MIPS_O32", + "MIPS_O64", + "MIPS_SoftFloat", + "NetBSD", + "none", + "OpenBSD", + "OSX", + "Posix", + "PPC", + "PPC64", + "PPC_HardFloat", + "PPC_SoftFloat", + "S390", + "S390X", + "SDC", + "SH", + "SH64", + "SkyOS", + "Solaris", + "SPARC", + "SPARC64", + "SPARC_HardFloat", + "SPARC_SoftFloat", + "SPARC_V8Plus", + "SysV3", + "SysV4", + "unittest", + "Win32", + "Win64", + "Windows", + "X86", + "X86_64" ]; /** * Properties of class types */ immutable string[] classProperties = [ - "alignof", - "classinfo", - "init", - "mangleof", - "__monitor", - "sizeof", - "stringof", - "tupleof", - "__vptr", + "alignof", + "classinfo", + "init", + "mangleof", + "__monitor", + "sizeof", + "stringof", + "tupleof", + "__vptr", ]; /** * Properties of struct types */ immutable string[] structProperties = [ - "alignof", - "tupleof", - "init", - "mangleof", - "sizeof", - "stringof" + "alignof", + "tupleof", + "init", + "mangleof", + "sizeof", + "stringof" ];