Strumenta / antlr-kotlin

Support for Kotlin as a target for ANTLR 4
Apache License 2.0
221 stars 47 forks source link

Implement a multiplatform CopyOnWriteArrayList #140

Closed lppedd closed 7 months ago

lppedd commented 7 months ago

A real CopyOnWriteArrayList is used only on the JVM side (like the Java runtime), as JS and WASM are still single threaded, and as Native is declared non thread-safe.

ftomassetti commented 7 months ago

Looks good, thank you