diff options
author | Arne Döring <arne.doering@gmx.net> | 2019-09-20 20:26:30 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-09-20 20:26:30 +0200 |
commit | 38ab51c44572b78845fa62b0c0a597a46a63ad28 (patch) | |
tree | df3a7ffa585c333fcbe65a3f49c18bbd5d6c5e88 /changelog.md | |
parent | 7bc5bf83345a0ebaef3dca9395f0bc7d285ba61e (diff) | |
download | Nim-38ab51c44572b78845fa62b0c0a597a46a63ad28.tar.gz |
importjs symbol (#12218)
* importjs symbol * importjs warning message, minor warning fixes
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 7a14c6c28..c558b3127 100644 --- a/changelog.md +++ b/changelog.md @@ -75,12 +75,15 @@ iterator myitems[T](x: openarray[T]): lent T iterator mypairs[T](x: openarray[T]): tuple[idx: int, val: lent T] ``` +- `importjs` can now be used to import for ffi on the JS target + ## Language changes - `uint64` is now finally a regular ordinal type. This means `high(uint64)` compiles and yields the correct value. + ### Tool changes - The Nim compiler now does not recompile the Nim project via ``nim c -r`` if |