Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-arm64-isclexer.node
Binary file not shown.
Binary file modified server/lib/win32-x64-isclexer.node
100644 → 100755
Binary file not shown.
5 changes: 5 additions & 0 deletions server/src/documentation/keywords/Index.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,11 @@
"type": "KW_TYPE_SQLIDENTIFIER",
"description": "Defines an alternate name for this index when referred to via SQL."
},
{
"name": "SurrogateId",
"type": "KW_TYPE_BOOLEAN",
"description": "A SurrogateId index is a nonpartitioned index on a single column, which behaves externally as if it is the class's id."
},
{
"name": "Type",
"type": "KW_TYPE_STRING",
Expand Down
2 changes: 1 addition & 1 deletion server/src/providers/foldingRange.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export async function onFoldingRanges(params: FoldingRangeParams) {
let inJSONXData: boolean = false;
let routinename = "";
for (let line = 0; line < parsed.length; line++) {
if (parsed[line].length === 0) {
if (!parsed[line]?.length) {
if (openranges.length > 0 && openranges[openranges.length-1].kind === FoldingRangeKind.Comment) {
// Comment block ended, so close the range and append it to the result array if the range is more than one line
if (openranges[openranges.length-1].startLine < openranges[openranges.length-1].endLine) {
Expand Down
1 change: 1 addition & 0 deletions server/src/utils/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2261,6 +2261,7 @@ export function beautifyFormalSpec(FormalSpec: string, markdown = false): string
result += c;
}
}
if (markdown && inParam) result += "*";
if (markdown && inCls) result += "**";
return `(${result})`;
}
Expand Down