Rename wast to wat

This commit is contained in:
dcodeIO
2018-02-17 11:09:22 +01:00
parent 6b459259f9
commit e50a23bf75
123 changed files with 8534 additions and 176 deletions

4
std/portable.d.ts vendored
View File

@ -179,9 +179,9 @@ declare class String {
static fromCodePoints(arr: i32[]): string;
readonly length: i32;
private constructor();
indexOf(subject: string): i32;
indexOf(subject: string, position?: i32): i32;
includes(other: string): bool;
lastIndexOf(subject: string): i32;
lastIndexOf(subject: string, position?: i32): i32;
charAt(index: i32): string;
charCodeAt(index: i32): i32;
substring(from: i32, to?: i32): string;