UFCS using new completion kind F
This commit is contained in:
parent
642a0e0a14
commit
29dba75ce9
|
@ -132,6 +132,7 @@ tab character, followed by a completion kind
|
|||
* m - member variable name
|
||||
* k - keyword, built-in version, scope statement
|
||||
* f - function or method
|
||||
* F - UFCS function
|
||||
* g - enum name
|
||||
* e - enum member
|
||||
* P - package name
|
||||
|
|
|
@ -47,6 +47,7 @@ void secondPass(SemanticSymbol* currentSymbol, Scope* moduleScope, ref ModuleCac
|
|||
case variableName:
|
||||
case memberVariableName:
|
||||
case functionName:
|
||||
case ufcsName:
|
||||
case aliasName:
|
||||
// type may not be null in the case of a renamed import
|
||||
if (currentSymbol.acSymbol.type is null)
|
||||
|
|
|
@ -75,6 +75,9 @@ enum CompletionKind : char
|
|||
/// function or method
|
||||
functionName = 'f',
|
||||
|
||||
/// UFCS function
|
||||
ufcsName = 'F',
|
||||
|
||||
/// enum name
|
||||
enumName = 'g',
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ void lookupUFCS(Scope* completionScope, DSymbol* beforeDotSymbol, size_t cursorP
|
|||
|
||||
AutocompleteResponse.Completion createCompletionForUFCS(const DSymbol* symbol)
|
||||
{
|
||||
return AutocompleteResponse.Completion(symbol.name, symbol.kind, "(UFCS) " ~ symbol.callTip, symbol
|
||||
return AutocompleteResponse.Completion(symbol.name, CompletionKind.ufcsName, symbol.callTip, symbol
|
||||
.symbolFile, symbol
|
||||
.location, symbol
|
||||
.doc);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
identifiers
|
||||
alignof k
|
||||
doStuff f
|
||||
doStuff F
|
||||
init k
|
||||
mangleof k
|
||||
max k
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
identifiers
|
||||
alignof k
|
||||
doStuff f
|
||||
doStuff F
|
||||
init k
|
||||
mangleof k
|
||||
max k
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
identifiers
|
||||
a v
|
||||
alignof k
|
||||
foo f
|
||||
foo F
|
||||
init k
|
||||
mangleof k
|
||||
sizeof k
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
identifiers
|
||||
alignof k
|
||||
fooHey f
|
||||
hasArgname f
|
||||
hasArgname F
|
||||
init k
|
||||
mangleof k
|
||||
sizeof k
|
||||
stringof k
|
||||
tupleof k
|
||||
u f
|
||||
ufcsBar f
|
||||
ufcsBarRef f
|
||||
ufcsBarRefConst f
|
||||
ufcsBarRefConstWrapped f
|
||||
ufcsBarRefImmuttableWrapped f
|
||||
ufcsBarReturnScope f
|
||||
ufcsBarScope f
|
||||
ufcsHello f
|
||||
u F
|
||||
ufcsBar F
|
||||
ufcsBarRef F
|
||||
ufcsBarRefConst F
|
||||
ufcsBarRefConstWrapped F
|
||||
ufcsBarRefImmuttableWrapped F
|
||||
ufcsBarReturnScope F
|
||||
ufcsBarScope F
|
||||
ufcsHello F
|
||||
|
|
Loading…
Reference in New Issue