mirror of
https://github.com/bendtherules/completion-viz.git
synced 2026-08-18 13:42:51 +00:00
15 lines
277 B
TypeScript
15 lines
277 B
TypeScript
export enum CompletionTypes {
|
|
Normal = "normal",
|
|
Return = "return",
|
|
Break = "break",
|
|
Continue = "continue",
|
|
Throw = "throw",
|
|
}
|
|
|
|
export interface CompletionRecord {
|
|
Type: CompletionTypes;
|
|
Value: any;
|
|
// Target: Actually undefined or StringValue
|
|
Target: any;
|
|
}
|