-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Objects support #259
base: main
Are you sure you want to change the base?
Objects support #259
Conversation
4aa9d64
to
271dfac
Compare
@@ -5,8 +5,10 @@ | |||
import org.jacodb.ets.base.EtsArrayAccess | |||
import org.jacodb.ets.base.EtsAssignStmt | |||
import org.jacodb.ets.base.EtsCallStmt | |||
import org.jacodb.ets.base.EtsClassType |
Check warning
Code scanning / detekt
Detects unused imports Warning
@@ -22,8 +24,10 @@ | |||
import org.usvm.StepResult | |||
import org.usvm.StepScope | |||
import org.usvm.UInterpreter | |||
import org.usvm.api.evalTypeEquals |
Check warning
Code scanning / detekt
Detects unused imports Warning
@@ -0,0 +1,17 @@ | |||
package org.usvm.machine.types |
Check warning
Code scanning / detekt
Detects missing final newlines Warning
@@ -0,0 +1,17 @@ | |||
package org.usvm.machine.types | |||
|
|||
import com.jetbrains.rd.framework.util.RdCoroutineScope.Companion.override |
Check warning
Code scanning / detekt
Detects unused imports Warning
override fun <R> accept(visitor: EtsType.Visitor<R>): R { | ||
error("Should not be called") | ||
} | ||
} |
Check warning
Code scanning / detekt
Checks whether files end with a line separator. Warning
No description provided.