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