parse comments

This commit is contained in:
Joeri Exelmans 2025-10-07 16:03:23 +02:00
parent 9dd72484fa
commit 692c052e11
4 changed files with 26 additions and 5 deletions

View file

@ -1,9 +1,11 @@
import { TransitionLabel } from "./label_ast";
import { Action, TransitionLabel } from "./label_ast";
export type AbstractState = {
uid: string;
children: ConcreteState[];
comments: [string, string][]; // array of tuple (text-uid, text-text)
entryActions: Action[];
exitActions: Action[];
}
export type AndState = {