updating readme for UFCS
This commit is contained in:
parent
5ff0b74550
commit
66b11109fc
|
@ -35,9 +35,9 @@ the issue.)
|
||||||
* *alias this*
|
* *alias this*
|
||||||
* *auto* declarations (Mostly)
|
* *auto* declarations (Mostly)
|
||||||
* *with* statements
|
* *with* statements
|
||||||
* Simple UFCS suggestions for concrete types.
|
* Simple UFCS suggestions for concrete types and fundamental types.
|
||||||
* Not working:
|
* 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
|
* 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)
|
* 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
|
* 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 -e
|
||||||
set -u
|
#set -u
|
||||||
|
|
||||||
../../bin/dcd-client $1 -c24 file.d > test_bool_actual.txt
|
../../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 -c50 file.d > test_byte_actual.txt
|
||||||
../../bin/dcd-client $1 -c78 file.d > test_ubyte_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 -c136 file.d > test_ushort_actual.txt
|
||||||
../../bin/dcd-client $1 -c160 file.d > test_int_actual.txt
|
../../bin/dcd-client $1 -c160 file.d > test_int_actual.txt
|
||||||
../../bin/dcd-client $1 -c186 file.d > test_uint_actual.txt
|
../../bin/dcd-client $1 -c186 file.d > test_uint_actual.txt
|
||||||
|
|
|
@ -1,2 +1,9 @@
|
||||||
identifiers
|
identifiers
|
||||||
x v
|
alignof k
|
||||||
|
init k
|
||||||
|
mangleof k
|
||||||
|
max k
|
||||||
|
min k
|
||||||
|
sizeof k
|
||||||
|
someShort F
|
||||||
|
stringof k
|
||||||
|
|
Loading…
Reference in New Issue