Skip to content

Commit 679a4da

Browse files
Merge branch 'v3' into thesis
2 parents d71dfd6 + 4ae3661 commit 679a4da

22 files changed

+32
-32
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ jobs:
1313
- run: raco pkg install -j 2 --auto
1414
- working-directory: ./tests/dsls/js
1515
run: npm install escodegen
16-
- run: raco test -j 2 -c syntax-spec-dev
16+
- run: raco test -j 2 -c syntax-spec-v3

demos/mk-workshop-2024/03-mk-core.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
(provide (all-defined-out))
44

5-
(require syntax-spec-dev
5+
(require syntax-spec-v3
66
(for-syntax syntax/parse))
77

88
;;

demos/mk-workshop-2024/04-mk-with-binding.rkt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
(provide (all-defined-out))
44

5-
(require syntax-spec-dev
5+
(require syntax-spec-v3
66
(for-syntax syntax/parse))
77

88
;;
@@ -55,5 +55,5 @@
5555

5656

5757
(begin-for-syntax
58-
(require (only-in syntax-spec-dev/private/ee-lib/main show-var-numbers))
58+
(require (only-in syntax-spec-v3/private/ee-lib/main show-var-numbers))
5959
(show-var-numbers #t))

demos/mk-workshop-2024/06-mk-with-sugar.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
(provide (all-defined-out))
44

5-
(require syntax-spec-dev
5+
(require syntax-spec-v3
66
(for-syntax syntax/parse))
77

88
;;

demos/mk-workshop-2024/08-mk-compiled.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
(provide (all-defined-out))
44

5-
(require syntax-spec-dev
5+
(require syntax-spec-v3
66
"compile.rkt" ;; New
77
(for-syntax syntax/parse))
88

demos/mk-workshop-2024/10-mk-with-check.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
(provide (all-defined-out))
44

5-
(require syntax-spec-dev
5+
(require syntax-spec-v3
66
"compile-with-check.rkt" ;; New
77
(for-syntax syntax/parse))
88

demos/mk-workshop-2024/compile-with-check.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
(require
77
"runtime.rkt"
8-
syntax-spec-dev
8+
syntax-spec-v3
99
(for-syntax syntax/parse
1010
(only-in ee-lib compiled-from)))
1111

demos/wg211/complete.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
(provide (all-defined-out))
44

5-
(require syntax-spec-dev
5+
(require syntax-spec-v3
66
"compile-with-check.rkt"
77
(for-syntax syntax/parse))
88

demos/wg211/mk-core.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
(provide (all-defined-out))
44

5-
(require syntax-spec-dev
5+
(require syntax-spec-v3
66
(for-syntax syntax/parse))
77

88
;;

demos/wg211/mk-with-binding.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
(provide (all-defined-out))
44

5-
(require syntax-spec-dev
5+
(require syntax-spec-v3
66
(for-syntax syntax/parse))
77

88
;;

0 commit comments

Comments
 (0)