1
0
mirror of https://github.com/salexdv/bsl_console.git synced 2024-11-28 08:48:48 +02:00

Доработка определения полей таблицы запроса

This commit is contained in:
salexdv 2022-05-04 09:54:08 +03:00
parent c5da28ec23
commit cfc428ce08

View File

@ -4202,7 +4202,7 @@ class bslHelper {
// Searching the source
position = new monaco.Position(match.range.endLineNumber, match.range.endColumn);
match = Finder.findPreviousMatch(this.model, '[a-zA-Z0-9\u0410-\u044F]+\\.[a-zA-Z0-9\u0410-\u044F_]+(?:\\.[a-zA-Z0-9\u0410-\u044F]+)?(?:\\.[a-zA-Z0-9\u0410-\u044F]+)?', position);
match = Finder.findPreviousMatch(this.model, '[a-zA-Z0-9\u0410-\u044F]+\\.[a-zA-Z0-9\u0410-\u044F_]+(?:\\.[a-zA-Z0-9\u0410-\u044F_]+)?(?:\\.[a-zA-Z0-9\u0410-\u044F_]+)?', position);
if (match) {
sourceDefinition = match.matches[0];