namespace reorg: libdeno and DenoCore to Deno.core (#1998)

This commit is contained in:
Kitson Kelly 2019-03-26 23:22:07 +11:00 committed by Ryan Dahl
parent ed2977d3c0
commit c43cfedeba
26 changed files with 178 additions and 146 deletions

View file

@ -7,7 +7,7 @@ function assert(cond) {
}
function main() {
const q = DenoCore.shared;
const q = Deno.core.sharedQueue;
let h = q.head();
assert(h > 0);
@ -56,7 +56,7 @@ function main() {
assert(q.numRecords() == 0);
assert(q.size() == 0);
libdeno.print("shared_queue_test.js ok\n");
Deno.core.print("shared_queue_test.js ok\n");
}
main();