Sync changes

This commit is contained in:
Justin Ethier 2016-09-02 18:29:42 -04:00
parent 63c2854541
commit d7e0c21863
2 changed files with 3 additions and 3 deletions

View file

@ -20,11 +20,11 @@ Section | Status | Comments
4.1 Primitive expression types | Partial | `include` and `include-ci` are not implemented, although `include` may be specified as part of a library definition. 4.1 Primitive expression types | Partial | `include` and `include-ci` are not implemented, although `include` may be specified as part of a library definition.
4.2 Derived expression types | Partial | 4.2 Derived expression types | Partial |
4.2.1 Conditionals | Yes | 4.2.1 Conditionals | Yes |
4.2.2 Binding constructs | Partial | Missing `let-values` and `let*-values` 4.2.2 Binding constructs | Yes |
4.2.3 Sequencing | Yes | 4.2.3 Sequencing | Yes |
4.2.4 Iteration | Yes | 4.2.4 Iteration | Yes |
4.2.5 Delayed evaluation | Yes | 4.2.5 Delayed evaluation | Yes |
4.2.6 Dynamic bindings | Yes | 4.2.6 Dynamic bindings | Yes | Parameter objects do not have thread-specific data at this time.
4.2.7 Exception handling | Yes | 4.2.7 Exception handling | Yes |
4.2.8 Quasiquotation | Yes | 4.2.8 Quasiquotation | Yes |
4.2.9 Case-lambda | Yes | 4.2.9 Case-lambda | Yes |

View file

@ -54,7 +54,7 @@ Documentation
- Cyclone's [Garbage Collector](docs/Garbage-Collector) is documented at a high-level. This document includes details on extending Cheney on the MTA to support multiple stacks and fusing that approach with a tri-color marking collector. - Cyclone's [Garbage Collector](docs/Garbage-Collector) is documented at a high-level. This document includes details on extending Cheney on the MTA to support multiple stacks and fusing that approach with a tri-color marking collector.
- The [Benchmarks](docs/Benchmarks) page compares the performance of Cyclone with other R<sup>7</sup>RS Schemes using a common set of benchmarks. - This [Benchmarks](http://ecraven.github.io/r7rs-benchmarks/benchmark.html) page by [ecraven](https://github.com/ecraven) compares the performance of Cyclone with other R<sup>7</sup>RS and R<sup>6</sup>RS Schemes using a common set of benchmarks.
- [Writing the Cyclone Scheme Compiler](docs/Writing-the-Cyclone-Scheme-Compiler) provides high-level details on how the compiler was written and how it works. - [Writing the Cyclone Scheme Compiler](docs/Writing-the-Cyclone-Scheme-Compiler) provides high-level details on how the compiler was written and how it works.