Skip to content

Commit d0085ad

Browse files
LiaoPengdcodeIO
authored andcommitted
Add missing declaration of Map#get in std/assembly (AssemblyScript#223)
1 parent 4498b28 commit d0085ad

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

NOTICE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ under the licensing terms detailed in LICENSE:
88
* Igor Sbitnev <PinkaminaDianePie@gmail.com>
99
* Norton Wang <me@nortonwang.com>
1010
* Alan Pierce <alangpierce@gmail.com>
11+
* Palmer <pengliao@live.cn>
1112

1213
Portions of this software are derived from third-party works licensed under
1314
the following terms:

std/assembly/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@ declare class Map<K,V> {
524524
readonly size: i32;
525525
has(key: K): bool;
526526
set(key: K, value: V): void;
527+
get(key: K): V;
527528
delete(key: K): bool;
528529
clear(): void;
529530
}

0 commit comments

Comments
 (0)