diff options
author | Eduardo Julian | 2019-06-21 00:26:20 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-06-21 00:26:20 -0400 |
commit | bbc0f5dc9dc0f810e95a20c8a986adb3839f9fdc (patch) | |
tree | 9b9edc7e9158f0a5aad1169de3a145398aff51ec /stdlib/source/test | |
parent | cf17b08c5d9b3aedc8aaa2b11456dcb69dec6049 (diff) |
Extracted binary parsing code into its own module.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/test/lux/target/jvm.lux | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/stdlib/source/test/lux/target/jvm.lux b/stdlib/source/test/lux/target/jvm.lux index 8176756cc..2ef15809b 100644 --- a/stdlib/source/test/lux/target/jvm.lux +++ b/stdlib/source/test/lux/target/jvm.lux @@ -3,6 +3,8 @@ [abstract/monad (#+ do)] [control ["." io (#+ IO)] + [parser + ["<2>" binary]] [concurrency ["." atom]] [security @@ -99,7 +101,7 @@ loader (/loader.memory (/loader.new-library []))]] ($_ _.and (_.test "Can read a generated class." - (case (binaryF.read /class.format bytecode) + (case (<2>.run /class.parser bytecode) (#error.Success output) (:: /class.equivalence = input output) |