mirror of
https://github.com/salexdv/bsl_console.git
synced 2024-11-28 08:48:48 +02:00
Доработка подсказки параметров методов для режима запроса и СКД
This commit is contained in:
parent
20de122526
commit
60135e0e7d
@ -5558,6 +5558,24 @@ class bslHelper {
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Determines if the current position is suitable for
|
||||
* showing a signature help
|
||||
*
|
||||
* @returns {bool}
|
||||
*/
|
||||
isSuitablePlaceForSigHelp() {
|
||||
|
||||
if (isQueryMode())
|
||||
return !this.requireQueryValue()
|
||||
else if (isDCSMode())
|
||||
return true;
|
||||
else
|
||||
return !this.isItStringLiteral();
|
||||
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Returnes name of last method for signature help
|
||||
*
|
||||
@ -5570,7 +5588,7 @@ class bslHelper {
|
||||
let method = '';
|
||||
let bracket = this.model.findMatchingBracketUp('(', this.position);
|
||||
|
||||
if (bracket && (!this.isItStringLiteral() || isQueryMode() || isDCSMode())) {
|
||||
if (bracket && this.isSuitablePlaceForSigHelp()) {
|
||||
|
||||
let position = new monaco.Position(bracket.startLineNumber, bracket.startColumn);
|
||||
let data = this.model.getWordUntilPosition(position);
|
||||
@ -5658,9 +5676,9 @@ class bslHelper {
|
||||
*/
|
||||
getQuerySigHelp(context) {
|
||||
|
||||
let unclosed = this.unclosedString(this.textBeforePosition);
|
||||
context = this.getLastSigMethod(context);
|
||||
|
||||
if (this.lastOperator != ')' && !this.requireQueryValue() && 0 <= unclosed.index) {
|
||||
if (context.methodName) {
|
||||
|
||||
context = this.getLastSigMethod(context);
|
||||
let helper = this.getCustomSigHelp(context);
|
||||
@ -5686,20 +5704,20 @@ class bslHelper {
|
||||
*/
|
||||
getDCSSigHelp(context) {
|
||||
|
||||
let unclosed = this.unclosedString(this.textBeforePosition);
|
||||
context = this.getLastSigMethod(context);
|
||||
|
||||
if (this.lastOperator != ')' && 0 <= unclosed.index) {
|
||||
if (context.methodName) {
|
||||
|
||||
let helper = this.getCustomSigHelp(context);
|
||||
|
||||
if (!helper && !editor.disableNativeSignatures) {
|
||||
|
||||
let functions = this.getQueryFunctions(bslDCS);
|
||||
helper = this.getCommonSigHelp(functions);
|
||||
helper = this.getCommonSigHelp(context, functions);
|
||||
|
||||
if (!helper) {
|
||||
functions = this.getQueryFunctions(bslQuery);
|
||||
helper = this.getCommonSigHelp(functions);
|
||||
helper = this.getCommonSigHelp(context, functions);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user