We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc29420 commit 4a308aaCopy full SHA for 4a308aa
std/assembly/fixedarray.ts
@@ -36,7 +36,7 @@ export class FixedArray<T> {
36
37
@operator("[]=") private __set(index: i32, value: T): void {
38
if (<u32>index >= <u32>this.length) throw new RangeError(E_INDEXOUTOFRANGE);
39
- return this.__unchecked_set(index, value);
+ this.__unchecked_set(index, value);
40
}
41
42
@operator("{}") private __unchecked_get(index: i32): T {
0 commit comments