Skip to content

Commit

Permalink
rename "impl" modules to "runtime", as discussed some time ago
Browse files Browse the repository at this point in the history
  • Loading branch information
countvajhula committed Jan 14, 2025
1 parent 07ecec5 commit 8672a23
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 51 deletions.
2 changes: 1 addition & 1 deletion qi-lib/flow/core/compiler/1000-qi0.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

(require "../passes.rkt"
(prefix-in fancy: fancy-app)
"../impl.rkt"
"../runtime.rkt"
racket/function
racket/list
(for-syntax racket/base
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion qi-lib/flow/extended/forms.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"../../macro.rkt"
(only-in "../space.rkt"
define-for-qi)
"impl.rkt")
"runtime.rkt")

;;; Predicates

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion qi-lib/flow/extended/syntax.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

(require syntax/parse
"../aux-syntax.rkt"
(for-template "impl.rkt"))
(for-template "runtime.rkt"))

(define-syntax-class conjux-clause ; "juxtaposed" conjoin
#:attributes (parsed)
Expand Down
4 changes: 2 additions & 2 deletions qi-test/tests/compiler.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
rackunit/text-ui
(prefix-in rules: "compiler/rules.rkt")
(prefix-in strategy: "compiler/strategy.rkt")
(prefix-in impl: "compiler/impl.rkt"))
(prefix-in runtime: "compiler/runtime.rkt"))

(define tests
(test-suite
"compiler tests"

rules:tests
strategy:tests
impl:tests))
runtime:tests))

(module+ main
(void
Expand Down
46 changes: 0 additions & 46 deletions qi-test/tests/compiler/impl.rkt

This file was deleted.

0 comments on commit 8672a23

Please sign in to comment.