forked from denoland/deno_graph
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path0_8_25.test
More file actions
67 lines (53 loc) · 2.97 KB
/
0_8_25.test
File metadata and controls
67 lines (53 loc) · 2.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
ayonli/jsext/0.8.25
-- deno.lock --
{
"version": "3",
"remote": {}
}
===
== FAST CHECK EMIT PASSED ==
== TYPE CHECK FAILED ==
-- stdout --
-- stderr --
TS2411 [ERROR]: Property '"--"' of type 'string[] | undefined' is not assignable to 'string' index type 'string | number | boolean | (string | number | boolean)[]'.
"--"?: string[];
~~~~
at file://<tmpdir>/cli.ts:54:3
TS4114 [ERROR]: This member must have an 'override' modifier because it overrides a member in the base class 'Map<K, V>'.
get [Symbol.toStringTag](): "BiMap" {
~~~~~~~~~~~~~~~~~~~~
at file://<tmpdir>/collections/BiMap.ts:4:7
TS4114 [ERROR]: This member must have an 'override' modifier because it overrides a member in the base class 'Map<K, any>'.
get [Symbol.toStringTag](): "CiMap" {
~~~~~~~~~~~~~~~~~~~~
at file://<tmpdir>/collections/CiMap.ts:2:7
TS2416 [ERROR]: Property 'entries' in type 'CiMap<K, V>' is not assignable to the same property in base type 'Map<K, any>'.
Type '() => IterableIterator<[K, V]>' is not assignable to type '() => MapIterator<[K, any]>'.
Type 'IterableIterator<[K, V]>' is missing the following properties from type 'MapIterator<[K, any]>': map, filter, take, drop, and 9 more.
override entries(): IterableIterator<[K, V]> {
~~~~~~~
at file://<tmpdir>/collections/CiMap.ts:20:12
TS2416 [ERROR]: Property 'keys' in type 'CiMap<K, V>' is not assignable to the same property in base type 'Map<K, any>'.
Type '() => IterableIterator<K>' is not assignable to type '() => MapIterator<K>'.
Type 'IterableIterator<K>' is missing the following properties from type 'MapIterator<K>': map, filter, take, drop, and 9 more.
override keys(): IterableIterator<K> {
~~~~
at file://<tmpdir>/collections/CiMap.ts:23:12
TS2416 [ERROR]: Property 'values' in type 'CiMap<K, V>' is not assignable to the same property in base type 'Map<K, any>'.
Type '() => IterableIterator<V>' is not assignable to type '() => MapIterator<any>'.
Type 'IterableIterator<V>' is missing the following properties from type 'MapIterator<any>': map, filter, take, drop, and 9 more.
override values(): IterableIterator<V> {
~~~~~~
at file://<tmpdir>/collections/CiMap.ts:26:12
TS2416 [ERROR]: Property '[Symbol.iterator]' in type 'CiMap<K, V>' is not assignable to the same property in base type 'Map<K, any>'.
Type '() => IterableIterator<[K, V]>' is not assignable to type '() => MapIterator<[K, any]>'.
Type 'IterableIterator<[K, V]>' is missing the following properties from type 'MapIterator<[K, any]>': map, filter, take, drop, and 9 more.
[Symbol.iterator](): IterableIterator<[K, V]> {
~~~~~~~~~~~~~~~~~
at file://<tmpdir>/collections/CiMap.ts:30:3
TS4114 [ERROR]: This member must have an 'override' modifier because it overrides a member in the base class 'Map<K, any>'.
[Symbol.iterator](): IterableIterator<[K, V]> {
~~~~~~~~~~~~~~~~~
at file://<tmpdir>/collections/CiMap.ts:30:3
Found 8 errors.
error: Type checking failed.