Skip to content

Commit

Permalink
Release v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Mar 11, 2020
1 parent c9fef40 commit 88378ea
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dist/asc.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/asc.js.map

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions dist/assemblyscript.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ declare module "assemblyscript/src/common" {
const ASC_FEATURE_EXCEPTION_HANDLING = "ASC_FEATURE_EXCEPTION_HANDLING";
const ASC_FEATURE_TAIL_CALLS = "ASC_FEATURE_TAIL_CALLS";
const ASC_FEATURE_REFERENCE_TYPES = "ASC_FEATURE_REFERENCE_TYPES";
const ASC_FEATURE_MULTI_VALUE = "ASC_FEATURE_MULTI_VALUE";
const I8 = "I8";
const I16 = "I16";
const I32 = "I32";
Expand Down Expand Up @@ -1706,7 +1707,8 @@ declare module "assemblyscript/src/module" {
ExceptionHandling = 64,
TailCall = 128,
ReferenceTypes = 256,
All = 511
MultiValue = 512,
All = 1023
}
export enum ExpressionId {
Invalid = 0,
Expand Down Expand Up @@ -5183,6 +5185,8 @@ declare module "assemblyscript/src/index" {
export const FEATURE_TAIL_CALLS: Feature;
/** Reference types. */
export const FEATURE_REFERENCE_TYPES: Feature;
/** Multi value types. */
export const FEATURE_MULTI_VALUE: Feature;
/** Enables a specific feature. */
export function enableFeature(options: Options, feature: Feature): void;
/** Disables a specific feature. */
Expand Down Expand Up @@ -5411,7 +5415,9 @@ declare module "assemblyscript/std/assembly/shared/feature" {
/** Tail call operations. */
TAIL_CALLS = 128,
/** Reference types. */
REFERENCE_TYPES = 256
REFERENCE_TYPES = 256,
/** Multi value types. */
MULTI_VALUE = 512
}
/** Gets the name of the specified feature one would specify on the command line. */
export function featureToString(feature: Feature): string;
Expand Down
2 changes: 1 addition & 1 deletion dist/assemblyscript.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/assemblyscript.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/sdk.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const BINARYEN_VERSION = "90.0.0-nightly.20200214";
const BINARYEN_VERSION = "91.0.0-nightly.20200310";
const LONG_VERSION = "4.0.0";
const ASSEMBLYSCRIPT_VERSION = "0.9.2";
const ASSEMBLYSCRIPT_VERSION = "0.9.3";

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

0 comments on commit 88378ea

Please sign in to comment.