Skip to content

Commit 00f3fc6

Browse files
committed
Stackoverflow
1 parent 8a951b5 commit 00f3fc6

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# KdbInsideBrains Changelog
22

3+
## [6.0.1]
4+
5+
### Fixed
6+
7+
- StackOverFlow at parsing inner lambdas inside a context definition
8+
39
## [6.0.0]
410

511
### Added

src/main/java/org/kdb/inside/brains/psi/QPsiUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public static boolean isGlobalDeclaration(@NotNull QVarDeclaration declaration)
8484
case FILE, CONTEXT -> true;
8585
case DICT, TABLE, QUERY, PARAMETERS -> false;
8686
case LAMBDA -> {
87-
if (hasNamespace(declaration.getQualifiedName())) {
87+
if (hasNamespace(declaration.getName())) {
8888
yield true;
8989
}
9090

version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pluginVersion=6.0.0
1+
pluginVersion=6.0.1

0 commit comments

Comments
 (0)