mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 04:39:10 +00:00
Update @typescript-eslint/* to v2.1.0 (#2878)
This commit is contained in:
parent
a205e8a3c2
commit
f12acdb50b
31 changed files with 100 additions and 83 deletions
|
@ -25,11 +25,11 @@ function fullRecords(q) {
|
|||
function main() {
|
||||
const q = Deno.core.sharedQueue;
|
||||
|
||||
let h = q.head();
|
||||
const h = q.head();
|
||||
assert(h > 0);
|
||||
|
||||
let r = new Uint8Array([1, 2, 3, 4, 5]);
|
||||
let len = r.byteLength + h;
|
||||
const len = r.byteLength + h;
|
||||
assert(q.push(99, r));
|
||||
assert(q.head() == len);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue