RIDER-67119: Make JavaScriptDebugAware#canGetEvaluationInfo overridable to support Blazor unusually-formed files

GitOrigin-RevId: 885a7c57a080e1c064201d4b44afdc243a1e2eb7
This commit is contained in:
Andrii Rublov
2023-01-20 23:07:46 +01:00
committed by intellij-monorepo-bot
parent 22e67cafdd
commit ff878dd67d

View File

@@ -64,7 +64,7 @@ abstract class JavaScriptDebugAware {
open val isOnlySourceMappedBreakpoints: Boolean
get() = true
fun canGetEvaluationInfo(file: PsiFile): Boolean = file.fileType == fileType
open fun canGetEvaluationInfo(file: PsiFile): Boolean = file.fileType == fileType
open fun getEvaluationInfo(element: PsiElement, document: Document, expressionInfoFactory: ExpressionInfoFactory): Promise<ExpressionInfo?>? = null