Skip to content

Commit 8bc989c

Browse files
committed
Mod
1 parent d7239e9 commit 8bc989c

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed

TODO.md

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# module system
2+
3+
Definition
4+
5+
Mod -- has definitions
6+
7+
Place and Transition -- has modId
8+
9+
Mod has definitions: Map<string, Definition>
10+
111
# net
212

313
[net] addPlace
@@ -23,12 +33,6 @@ Stmt
2333

2434
parser
2535

26-
# module system
27-
28-
Definition
29-
30-
Mod has definitions: Map<string, Definition>
31-
3236
# type system
3337

3438
Type -- simple type system

src/lang/mod/Mod.ts

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export type Mod = {
2+
//
3+
}

src/lang/mod/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "./Mod"

src/lang/net/addPlace.ts

Whitespace-only changes.

src/lang/net/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
export * from "./Net"
22
export * from "./createNet"
3+
// export * from "./addPlace"

0 commit comments

Comments
 (0)