-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9cadf0d
commit 4aa9d64
Showing
4 changed files
with
43 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
usvm-ts/src/main/kotlin/org/usvm/machine/types/AuxiliaryType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package org.usvm.machine.types | ||
Check warning Code scanning / detekt Detects missing final newlines Warning
File must end with a newline (\n)
|
||
|
||
import com.jetbrains.rd.framework.util.RdCoroutineScope.Companion.override | ||
Check warning Code scanning / detekt Detects unused imports Warning
Unused import
|
||
import org.jacodb.ets.base.EtsRefType | ||
import org.jacodb.ets.base.EtsType | ||
import org.jacodb.ets.model.EtsFieldSignature | ||
|
||
/** | ||
* An artificial type that represents a set of properties. | ||
*/ | ||
class AuxiliaryType(val properties: Set<EtsFieldSignature>) : EtsRefType { | ||
override val typeName: String = "AuxiliaryType" | ||
|
||
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
The file /home/runner/work/usvm/usvm/usvm-ts/src/main/kotlin/org/usvm/machine/types/AuxiliaryType.kt is not ending with a new line.
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters