Skip to content

Commit

Permalink
Merge pull request #5438 from unisonweb/topic/jit-value-cache
Browse files Browse the repository at this point in the history
rubber stamp
  • Loading branch information
aryairani authored Nov 5, 2024
2 parents edbbcdc + b795c72 commit e663e56
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
env:
## Some version numbers that are used during CI
ormolu_version: 0.7.2.0
jit_version: "@unison/internal/releases/0.0.24"
jit_version: "@unison/internal/releases/0.0.25"
runtime_tests_version: "@unison/runtime-tests/releases/0.0.1"

## Some cached directories
Expand Down
3 changes: 1 addition & 2 deletions scheme-libs/racket/unison/boot.ss
Original file line number Diff line number Diff line change
Expand Up @@ -329,8 +329,7 @@
(or trace? (eq? h 'trace))
(or inline? (eq? h 'inline))
(or recursive? (eq? h 'recursive))
; TODO: enable values
value?)))
(or value? (eq? h 'value)))))

(define-for-syntax
(make-link-def gen-link? loc name:stx name:link:stx)
Expand Down
2 changes: 1 addition & 1 deletion unison-src/transcripts-manual/gen-racket-libs.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ When we start out, `./scheme-libs/racket` contains a bunch of library files that
Next, we'll download the jit project and generate a few Racket files from it.

``` ucm
jit-setup/main> lib.install @unison/internal/releases/0.0.24
jit-setup/main> lib.install @unison/internal/releases/0.0.25
```

``` unison
Expand Down
8 changes: 4 additions & 4 deletions unison-src/transcripts-manual/gen-racket-libs.output.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ When we start out, `./scheme-libs/racket` contains a bunch of library files that
Next, we'll download the jit project and generate a few Racket files from it.

``` ucm
jit-setup/main> lib.install @unison/internal/releases/0.0.24
jit-setup/main> lib.install @unison/internal/releases/0.0.25
Downloaded 15002 entities.
Downloaded 14942 entities.
I installed @unison/internal/releases/0.0.24 as
unison_internal_0_0_24.
I installed @unison/internal/releases/0.0.25 as
unison_internal_0_0_25.
```
``` unison
Expand Down

0 comments on commit e663e56

Please sign in to comment.