Skip to content

Update according to AssemblyScript/assemblyscript#2548 #184

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/status.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ As such, certain higher-level language features still have their limitations or
|---------------------------------------------------|-----------------
| 🐤 **Functional**
| Bootstrap | The compiler can compile itself to WebAssembly, passing the test suite. Note that the compiler is not technically "self hosted" in WebAssembly yet, as it currently uses a JavaScript frontend for I/O and links to Binaryen (C++ compiled with Emscripten), which again requires some amount of JS glue code.<br />
| OOP | Largely implemented in linear memory. Access modifiers like `private` and `protected` are not currently enforced. There is rudimentary support for interfaces. Interfaces must specify getters instead of fields.
| OOP | Largely implemented in linear memory. Access modifiers like `private` and `protected` are not currently enforced. There is rudimentary support for interfaces.
| Standard&nbsp;library | Largely implemented in linear memory. Some APIs function a little different than in JavaScript due to differences introduced by static typing or not yet available future features. There is a [separate status document](https://github.com/AssemblyScript/assemblyscript/wiki/Status-and-Roadmap) specific to the standard library.
| Generics | Generics are compiled as monomorphized templates for now and can be specialized with [static type checks](./stdlib/globals.md#static-type-checks). Constraining `extends XY` clauses are not yet enforced.
| Garbage&nbsp;collection | Implemented in linear memory for the time being, independent of the host GC.
Expand Down