Skip to content

Commit 88378ea

Browse files
committed
Release v0.9.3
1 parent c9fef40 commit 88378ea

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

Diff for: dist/asc.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/asc.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/assemblyscript.d.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ declare module "assemblyscript/src/common" {
147147
const ASC_FEATURE_EXCEPTION_HANDLING = "ASC_FEATURE_EXCEPTION_HANDLING";
148148
const ASC_FEATURE_TAIL_CALLS = "ASC_FEATURE_TAIL_CALLS";
149149
const ASC_FEATURE_REFERENCE_TYPES = "ASC_FEATURE_REFERENCE_TYPES";
150+
const ASC_FEATURE_MULTI_VALUE = "ASC_FEATURE_MULTI_VALUE";
150151
const I8 = "I8";
151152
const I16 = "I16";
152153
const I32 = "I32";
@@ -1706,7 +1707,8 @@ declare module "assemblyscript/src/module" {
17061707
ExceptionHandling = 64,
17071708
TailCall = 128,
17081709
ReferenceTypes = 256,
1709-
All = 511
1710+
MultiValue = 512,
1711+
All = 1023
17101712
}
17111713
export enum ExpressionId {
17121714
Invalid = 0,
@@ -5183,6 +5185,8 @@ declare module "assemblyscript/src/index" {
51835185
export const FEATURE_TAIL_CALLS: Feature;
51845186
/** Reference types. */
51855187
export const FEATURE_REFERENCE_TYPES: Feature;
5188+
/** Multi value types. */
5189+
export const FEATURE_MULTI_VALUE: Feature;
51865190
/** Enables a specific feature. */
51875191
export function enableFeature(options: Options, feature: Feature): void;
51885192
/** Disables a specific feature. */
@@ -5411,7 +5415,9 @@ declare module "assemblyscript/std/assembly/shared/feature" {
54115415
/** Tail call operations. */
54125416
TAIL_CALLS = 128,
54135417
/** Reference types. */
5414-
REFERENCE_TYPES = 256
5418+
REFERENCE_TYPES = 256,
5419+
/** Multi value types. */
5420+
MULTI_VALUE = 512
54155421
}
54165422
/** Gets the name of the specified feature one would specify on the command line. */
54175423
export function featureToString(feature: Feature): string;

Diff for: dist/assemblyscript.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/assemblyscript.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/sdk.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
const BINARYEN_VERSION = "90.0.0-nightly.20200214";
1+
const BINARYEN_VERSION = "91.0.0-nightly.20200310";
22
const LONG_VERSION = "4.0.0";
3-
const ASSEMBLYSCRIPT_VERSION = "0.9.2";
3+
const ASSEMBLYSCRIPT_VERSION = "0.9.3";
44

55
// AMD/require.js (browser)
66
if (typeof define === "function" && define.amd) {

0 commit comments

Comments
 (0)