diff options
| author | Edvard Thörnros <edvard.thornros@gmail.com> | 2021-02-16 21:10:03 +0100 |
|---|---|---|
| committer | Edvard Thörnros <edvard.thornros@gmail.com> | 2021-02-16 21:10:03 +0100 |
| commit | e86b1be782c2c2f57e968557d7f91bbcc7b8b27f (patch) | |
| tree | 22e603ce7b369b51dc1e2ceaeb63e64c51ea4bfd /src/lib.rs | |
| parent | ecc84fc8259ab0f2f5754718ed70e3a57048a540 (diff) | |
| download | sylt-e86b1be782c2c2f57e968557d7f91bbcc7b8b27f.tar.gz | |
fix the failing testcase
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -480,6 +480,12 @@ pub enum Op { /// Does not affect the stack. Define(usize), + /// Links the upvalues for the given constant + /// function. This updates the constant stack. + /// + /// Does not affect the stack. + Link(usize), + /// Calls "something" with the given number /// of arguments. The callable value is /// then replaced with the result. @@ -1275,11 +1281,11 @@ f :: fn -> fn -> { g := f() g() -q <=> 3 +q <=> 1 g() -q <=> 4 +q <=> 2 g() -q <=> 5 +q <=> 3 ", ); |
