diff --git a/autocomplete.d b/autocomplete.d deleted file mode 100755 index 3890865..0000000 --- a/autocomplete.d +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright Brian Schott (Sir Alaran) 2012. -// Distributed under the Boost Software License, Version 1.0. -// (See accompanying file LICENSE_1_0.txt or copy at -// http://www.boost.org/LICENSE_1_0.txt) - -module autocomplete; - -string dotComplete(Tokens)(ref Tokens tokens, size_t cursorPosition) -{ - return ""; -} - -string parenComplete(Tokens)(ref Tokens tokens, size_t cursorPosition) -{ - return ""; -} - - -string symbolComplete(Tokens)(ref Tokens tokens, size_t cursorPosition) -{ - return ""; -} diff --git a/versions.d b/versions.d deleted file mode 100755 index ea1129f..0000000 --- a/versions.d +++ /dev/null @@ -1,84 +0,0 @@ - -/** - * Predefined version identifiers - */ -immutable string[] versions = [ - "DigitalMars", - "GNU", - "LDC", - "SDC", - "Windows", - "Win32", - "Win64", - "linux", - "OSX", - "FreeBSD", - "OpenBSD", - "NetBSD", - "DragonFlyBSD", - "BSD", - "Solaris", - "Posix", - "AIX", - "Haiku", - "SkyOS", - "SysV3", - "SysV4", - "Hurd", - "Android", - "Cygwin", - "X86", - "X86_64", - "ARM", - "ARM_Thumb", - "ARM_SoftFloat", - "ARM_SoftFP", - "ARM_HardFloat", - "AArch64", - "PPC", - "PPC_SoftFloat", - "PPC_HardFloat", - "PPC64", - "IA64", - "MIPS32", - "MIPS64", - "MIPS_O32", - "MIPS_N32", - "MIPS_O64", - "MIPS_N64", - "MIPS_EABI", - "MIPS_SoftFloat", - "MIPS_HardFloat", - "SPARC", - "SPARC_V8Plus", - "SPARC_SoftFloat", - "SPARC_HardFloat", - "SPARC64", - "S390", - "S390X", - "HPPA", - "HPPA64", - "SH", - "SH64", - "Alpha", - "Alpha_SoftFloat", - "Alpha_HardFloat", - "LittleEndian", - "BigEndian", - "D_Coverage", - "D_Ddoc", - "D_InlineAsm_X86", - "D_InlineAsm_X86_64", - "D_LP64", - "D_X32", - "D_HardFloat", - "D_SoftFloat", - "D_PIC", - "D_SIMD", - "D_Version2", - "D_NoBoundsChecks", - "unittest", - "assert", - "none", - "all" -];