Merge pull request #17658 from hvitved/shared/cfg-conditional-splitting

Shared `ConditionalCompletionSplitting` implementation
This commit is contained in:
Tom Hvitved
2024-10-10 13:21:38 +02:00
committed by GitHub
10 changed files with 423 additions and 241 deletions

View File

@@ -0,0 +1,10 @@
/** Provides the empty `Void` class. */
/** The empty void type. */
private newtype TVoid = TMkVoid() { none() }
/** The trivial empty type. */
final class Void extends TVoid {
/** Gets a textual representation of this element. */
string toString() { result = "dummy" }
}