arcs nicely curve when they connect a rountangle to itself
This commit is contained in:
parent
e009f718d2
commit
da0e56e17c
11 changed files with 526 additions and 153 deletions
|
|
@ -32,7 +32,7 @@ export type RaiseEvent = {
|
|||
}
|
||||
|
||||
|
||||
export type Expression = BinaryExpression | UnaryExpression | VarRef;
|
||||
export type Expression = BinaryExpression | UnaryExpression | VarRef | Literal;
|
||||
|
||||
export type BinaryExpression = {
|
||||
kind: "binaryExpr";
|
||||
|
|
@ -51,3 +51,8 @@ export type VarRef = {
|
|||
kind: "ref";
|
||||
variable: string;
|
||||
}
|
||||
|
||||
export type Literal = {
|
||||
kind: "literal";
|
||||
value: any;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue