Skip to content

Commit

Permalink
Fixes #309
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-bsaviano committed Mar 11, 2024
1 parent 14d397d commit 1811dd9
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## [2.4.4] - 2024-XX-XX
- Fix issue [#307](https://github.com/intersystems/language-server/issues/307): Add intellisense for property Aliases
- Fix issue [#309](https://github.com/intersystems/language-server/issues/309): Fix coloring of CSS urls that contain a right parenthesis
- Parser changes:
- DP-429226: Coloring for User Defined Aggregate Functions (UDAF)
- DP-429298: Coloring support for new SQL Scalar function DATE_TRUNC()
- DP-429328: Fix coloring for POSIXTIME, SQL_POSIXTIME
- DP-429425: Correctly color %NOCHECK, %NOINDEX, %NOTRIGGER, and %NOLOCK as valid SQL keys
- DP-429426: Coloring for for INTERSECT/EXCEPT

## [2.4.3] - 2024-02-20
- Fix issue [#302](https://github.com/intersystems/language-server/issues/302): Intellisense is garbled for macros with Markdown characters in their definition
Expand Down
Binary file modified server/lib/alpine-arm64-isclexer.node
Binary file not shown.
Binary file modified server/lib/alpine-x64-isclexer.node
Binary file not shown.
Binary file modified server/lib/darwin-arm64-isclexer.node
Binary file not shown.
Binary file modified server/lib/darwin-x64-isclexer.node
Binary file not shown.
Binary file modified server/lib/linux-arm64-isclexer.node
Binary file not shown.
Binary file modified server/lib/linux-x64-isclexer.node
Binary file not shown.
Binary file modified server/lib/win32-x64-isclexer.node
Binary file not shown.
6 changes: 6 additions & 0 deletions server/src/utils/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1570,6 +1570,12 @@ export async function determineDeclaredLocalVarClass(
context: "instance"
};
}
else if (thisvar === "%SourceControl") {
result = {
baseclass: "%Studio.Extension.Base",
context: "instance"
};
}
else {
// Scan to the top of the method to find the #Dim
let founddim = false;
Expand Down

0 comments on commit 1811dd9

Please sign in to comment.