kataan 0.0.4

A high-performance JavaScript engine written in pure Rust. Library, C FFI, and CLI.
Documentation
1
2
3
4
5
6
7
8
/*---
description: Computed property names in object literals
esid: sec-object-initializer
---*/
var key = "dynamic";
var obj = { [key]: 1, ["a" + "b"]: 2 };
assert.sameValue(obj.dynamic, 1);
assert.sameValue(obj.ab, 2);