updating readme for UFCS
This commit is contained in:
parent
5ff0b74550
commit
66b11109fc
|
@ -35,9 +35,9 @@ the issue.)
|
|||
* *alias this*
|
||||
* *auto* declarations (Mostly)
|
||||
* *with* statements
|
||||
* Simple UFCS suggestions for concrete types.
|
||||
* Simple UFCS suggestions for concrete types and fundamental types.
|
||||
* Not working:
|
||||
* UFCS completion for templates, literals, UFCS function arguments, and '.' chaining with other UFCS functions.
|
||||
* UFCS completion for templates, literals, aliased types, UFCS function arguments, and '.' chaining with other UFCS functions.
|
||||
* UFCS calltips
|
||||
* Autocompletion of declarations with template arguments (This will work to some extent, but it won't do things like replace T with int)
|
||||
* Determining the type of an enum member when no base type is specified, but the first member has an initializer
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
set -e
|
||||
set -u
|
||||
#set -u
|
||||
|
||||
../../bin/dcd-client $1 -c24 file.d > test_bool_actual.txt
|
||||
../../bin/dcd-client $1 -c50 file.d > test_byte_actual.txt
|
||||
../../bin/dcd-client $1 -c78 file.d > test_ubyte_actual.txt
|
||||
../../bin/dcd-client $1 -c105 file.d > test_short_actual.txt
|
||||
../../bin/dcd-client $1 -c106 file.d > test_short_actual.txt
|
||||
../../bin/dcd-client $1 -c136 file.d > test_ushort_actual.txt
|
||||
../../bin/dcd-client $1 -c160 file.d > test_int_actual.txt
|
||||
../../bin/dcd-client $1 -c186 file.d > test_uint_actual.txt
|
||||
|
@ -49,4 +49,4 @@ diff test_ireal_actual.txt test_ireal_expected.txt
|
|||
diff test_cfloat_actual.txt test_cfloat_expected.txt
|
||||
diff test_cdouble_actual.txt test_cdouble_expected.txt
|
||||
diff test_creal_actual.txt test_creal_expected.txt
|
||||
diff test_void_actual.txt test_void_expected.txt
|
||||
diff test_void_actual.txt test_void_expected.txt
|
||||
|
|
|
@ -1,2 +1,9 @@
|
|||
identifiers
|
||||
x v
|
||||
alignof k
|
||||
init k
|
||||
mangleof k
|
||||
max k
|
||||
min k
|
||||
sizeof k
|
||||
someShort F
|
||||
stringof k
|
||||
|
|
Loading…
Reference in New Issue