Skip to content

Commit

Permalink
feat(compiler): enhance query processor to lookup elements #41
Browse files Browse the repository at this point in the history
Refactor the BaseQueryStatementProcessor to use `lookupElement` instead of returning an empty list for non-VCS commits, enriching the query processing functionality.
  • Loading branch information
phodal committed Aug 5, 2024
1 parent f59cc83 commit dbcdc6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ open class BaseQueryStatementProcessor(override val myProject: Project, hole: Ho
it.value to lookupVcsCommit(it)
}
else -> {
it.value to emptyList()
it.value to lookupElement(it)
}
}
}
Expand Down

0 comments on commit dbcdc6b

Please sign in to comment.