File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
- [ net] TransitionEntry -- has ` subnet `
2
-
3
1
# stmt
4
2
5
3
DefinePlace
25
23
}
26
24
```
27
25
26
+ # net
27
+
28
+ [ net] TransitionEntry -- has ` subnet `
29
+
28
30
# exp
29
31
30
32
BlockStmt -- LetPlace
Original file line number Diff line number Diff line change @@ -2,5 +2,6 @@ import { Definition } from "../definition"
2
2
3
3
export type Mod = {
4
4
url : URL
5
+ text : string
5
6
definitions : Map < string , Definition >
6
7
}
Original file line number Diff line number Diff line change @@ -7,14 +7,14 @@ import { Mod } from "./Mod"
7
7
8
8
export function createMod ( options : {
9
9
url : URL
10
- // text: string
10
+ text : string
11
11
// stmts: Array<Stmt>
12
12
loader : Loader
13
13
} ) : Mod {
14
14
const mod = {
15
15
loader : options . loader ,
16
16
url : options . url ,
17
- // text: options.text,
17
+ text : options . text ,
18
18
// stmts: options.stmts,
19
19
definitions : new Map ( ) ,
20
20
// builtins: new Map(),
You can’t perform that action at this time.
0 commit comments