use gc interface directly, document

This commit is contained in:
dcode
2019-03-26 23:35:08 +01:00
parent 7c0dc66849
commit 3146f8f9e0
95 changed files with 17360 additions and 13504 deletions

View File

@ -16,8 +16,8 @@ var key2 = Symbol.keyFor(sym2);
assert(key1 === null);
assert(key2 === null);
var key3 = Symbol.keyFor(sym3);
var key4 = Symbol.keyFor(sym4);
var key3 = Symbol.keyFor(sym3)!;
var key4 = Symbol.keyFor(sym4)!;
assert(key3 == "123");
assert(key3 == key4);