Skip to content

Commit 1753277

Browse files
committed
rename "impl" modules to "runtime", as discussed some time ago
1 parent 07ecec5 commit 1753277

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

qi-lib/flow/core/compiler/1000-qi0.rkt

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

33
(require "../passes.rkt"
44
(prefix-in fancy: fancy-app)
5-
"../impl.rkt"
5+
"../runtime.rkt"
66
racket/function
77
racket/list
88
(for-syntax racket/base
File renamed without changes.

qi-lib/flow/extended/forms.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"../../macro.rkt"
1818
(only-in "../space.rkt"
1919
define-for-qi)
20-
"impl.rkt")
20+
"runtime.rkt")
2121

2222
;;; Predicates
2323

File renamed without changes.

qi-lib/flow/extended/syntax.rkt

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

1313
(require syntax/parse
1414
"../aux-syntax.rkt"
15-
(for-template "impl.rkt"))
15+
(for-template "runtime.rkt"))
1616

1717
(define-syntax-class conjux-clause ; "juxtaposed" conjoin
1818
#:attributes (parsed)

qi-test/tests/compiler.rkt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
rackunit/text-ui
77
(prefix-in rules: "compiler/rules.rkt")
88
(prefix-in strategy: "compiler/strategy.rkt")
9-
(prefix-in impl: "compiler/impl.rkt"))
9+
(prefix-in runtime: "compiler/runtime.rkt"))
1010

1111
(define tests
1212
(test-suite
1313
"compiler tests"
1414

1515
rules:tests
1616
strategy:tests
17-
impl:tests))
17+
runtime:tests))
1818

1919
(module+ main
2020
(void

qi-test/tests/compiler/impl.rkt renamed to qi-test/tests/compiler/runtime.rkt

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

33
(provide tests)
44

5-
(require qi/flow/core/impl
5+
(require qi/flow/core/runtime
66
rackunit
77
rackunit/text-ui
88
(only-in racket/function thunk))

0 commit comments

Comments
 (0)