Open
Description
Bug description
String.fromCodePoints
is documented here: https://www.assemblyscript.org/stdlib/string.html#static-members
It is defined in the portable std here
assemblyscript/std/portable/index.js
Line 241 in 64cba2e
However it is missing from the AssemblyScript String
class here:
assemblyscript/std/assembly/string.ts
Line 10 in 64cba2e
Steps to reproduce
compile the following code with asc
const foo = String.fromCodePoints([102, 111, 111]);
AssemblyScript version
v0.27.26