mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 04:39:10 +00:00
namespace reorg: libdeno and DenoCore to Deno.core (#1998)
This commit is contained in:
parent
ed2977d3c0
commit
c43cfedeba
26 changed files with 178 additions and 146 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue