构建系统更新

1. 支撑 expect testing

a. 使用 moon new 新建一个 MoonBit 项目。

b. 在 lib/hello.mbt中写入:

pub fn hello() -> String {
  "Hello, world!"
}
test {
  let buf = Buffer::make(10)
  buf.write_string(hello())
  buf.expect()?
}

c. 然后运转 moon test –update或许 moon test -u:

$ moon test --update
expect test failed at lib/hello.mbt:8:3-8:15
Diff:
----
Hello, world!
----
Total tests: 1, passed: 0, failed: 1.
Auto updating expect tests and retesting ...
Total tests: 1, passed: 1, failed: 0.

d. 再次打开 lib/hello.mbt 文件,能够看到已经将测试结果 promote 到源码中。

pub fn hello() -> String {
  "Hello, world!"
}
test {
  let buf = Buffer::make(10)
  buf.write_string(hello())
  buf.expect(~content="Hello, world!")?
  //         ^~~~~~~~~~~~~~~~~~~~~~~~ 测试结果更新
}

2. moon run 不再支撑 –output-wat选项。

MoonBit 更新

1. 支撑多参数结构器的后端代码生成

支撑多参数结构器(multi-argument constructor)的后端代码生成。现在结构一个泛型类型的值的时候,假如泛型参数为元组的话必须要写括号,即:

enum A[X] {
  A(X)
}
fn init {
  // Error, expecting 1 arg, getting 2
  A::A(1, 2) |> ignore
  // Ok
  A::A((1, 2)) |> ignore
}

多参数结构器 unbox 了参数,能够提高生成的代码的功能,也答应程序员对数据的内存布局有了更多的掌控。

2. 调整了Int64的lsl, lsr, asr方法

现在移位参数不再是Int64,而是Int。同时调整了clz, ctz, popcnt方法,现在返回类型不再是Int64,而是Int。此项改动有助于我们在不支撑原生Int64的平台上生成更高效的代码。

IDE 更新

1. 支撑带标签参数的重命名。

2. VSCode 插件支撑主动装置或许更新 MoonBit

a. 更新插件后,假如没有装置 moon 或许 moon 不是最新的时候,VSCode 右下角弹出主动装置/晋级的提示。

MoonBit 周报 Vol.34:支撑 expect testing 与多参数结构器

b. 点击 “yes”, 来执行主动装置使命。使命完成后就能够用了。

MoonBit 周报 Vol.34:支撑 expect testing 与多参数结构器