This file contains hidden or 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
import Combine | |
/// A state machine for the code completions window. | |
/// | |
/// Does not keep track of the source edits, or the cursor position. This is left to the call site. | |
/// | |
/// - Note: Use the PlantUML source at the bottom to generate a UML state diagram. | |
final class CodeCompletionStateMachine { | |
/// The states the state machine can be in. |