-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconstraint.yaml
65 lines (62 loc) · 1.86 KB
/
constraint.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
classes:
- ConstraintBlock:
- super: ConstraintStmt
- data:
- name: string
- is_dynamic: bool
- ConstraintScope:
- super: ConstraintStmt
# - data:
# - symtab:
# - type: map<string, P<NamedScopeChild>>
# - is_ctor: false
- ConstraintStmt:
- super: ScopeChild
- ConstraintStmtDefault:
- super: ConstraintStmt
- data:
- hid: UP<ExprHierarchicalId>
- expr: UP<Expr>
- ConstraintStmtDefaultDisable:
- super: ConstraintStmt
- data:
- hid: UP<ExprHierarchicalId>
- ConstraintStmtExpr:
- super: ConstraintStmt
- data:
- expr: UP<Expr>
- ConstraintStmtField:
- super: ConstraintStmt
- data:
- name: UP<ExprId>
- type: UP<DataType>
- ConstraintStmtForall:
- super: ConstraintScope
- data:
- iterator_id: UP<ExprId>
- type_id: UP<DataTypeUserDefined>
- ref_path: UP<ExprRefPath>
- ConstraintStmtForeach:
- super: ConstraintScope
- data:
- it:
- type: P<ConstraintStmtField>
- is_ctor: false
- idx:
- type: P<ConstraintStmtField>
- is_ctor: false
- expr: UP<Expr>
- ConstraintStmtIf:
- super: ConstraintStmt
- data:
- cond: UP<Expr>
- true_c: UP<ConstraintScope>
- false_c: UP<ConstraintScope>
- ConstraintStmtImplication:
- super: ConstraintScope
- data:
- cond: UP<Expr>
- ConstraintStmtUnique:
- super: ConstraintStmt
- data:
- list: list<UP<ExprRefPathContext>>