Skip to content

Commit c801caa

Browse files
Import cleanup
1 parent 59f9a5c commit c801caa

23 files changed

+7
-30
lines changed

arr.test.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ import {
44
assertStrictEquals,
55
assertThrows,
66
} from '@std/assert';
7-
8-
import { int8 } from './int/8.ts';
9-
import { Struct } from './struct.ts';
107
import { array } from './arr.ts';
8+
import { bigEndian, littleEndian } from './endian.ts';
9+
import { int8 } from './int/8.ts';
1110
import { pointer } from './ptr.ts';
11+
import { Struct } from './struct.ts';
1212
import { getByteLength, getByteOffset } from './util.ts';
13-
import { bigEndian, littleEndian } from './endian.ts';
1413

1514
Deno.test('pointer', () => {
1615
class Foo extends Struct {

arr.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { MeekValueMap } from '@hqtsm/meek/valuemap';
2-
32
import type { MemberInfos, Members } from './members.ts';
43
import type { ArrayBufferReal } from './native.ts';
54
import {

bool/16.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { assertEquals } from '@std/assert';
2-
32
import { Struct } from '../struct.ts';
43
import { getByteLength, getByteOffset } from '../util.ts';
54
import {

bool/32.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { assertEquals } from '@std/assert';
2-
32
import { Struct } from '../struct.ts';
43
import { getByteLength, getByteOffset } from '../util.ts';
54
import {

bool/8.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { assertEquals } from '@std/assert';
2-
32
import { Struct } from '../struct.ts';
43
import { getByteLength, getByteOffset } from '../util.ts';
54
import { bool8, Bool8Ptr } from './8.ts';

endian.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { assertEquals, assertNotEquals, assertStrictEquals } from '@std/assert';
2-
32
import {
43
BIG_ENDIAN,
54
bigEndian,

float/16.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { getFloat16, setFloat16 } from '@hqtsm/dataview/float/16';
22
import { assertEquals } from '@std/assert';
3-
43
import type { ArrayBufferReal } from '../native.ts';
54
import { Struct } from '../struct.ts';
65
import { dataView, getByteLength, getByteOffset } from '../util.ts';

float/16.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { getFloat16, setFloat16 } from '@hqtsm/dataview/float/16';
2-
32
import { defineMember } from '../member.ts';
43
import type { MemberableClass, MemberableClassKeys } from '../members.ts';
54
import { Ptr } from '../ptr.ts';

float/32.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { assertEquals } from '@std/assert';
2-
32
import { Struct } from '../struct.ts';
43
import { getByteLength, getByteOffset } from '../util.ts';
54
import {

float/64.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { assertEquals } from '@std/assert';
2-
32
import { Struct } from '../struct.ts';
43
import { getByteLength, getByteOffset } from '../util.ts';
54
import {

0 commit comments

Comments
 (0)