Skip to content

Commit eb2a4dc

Browse files
committed
Nightly v0.9.1-nightly.20200131
1 parent a1e681c commit eb2a4dc

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

dist/asc.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/asc.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assemblyscript.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ declare module "assemblyscript/src/common" {
135135
const ASC_NO_TREESHAKING = "ASC_NO_TREESHAKING";
136136
const ASC_NO_ASSERT = "ASC_NO_ASSERT";
137137
const ASC_MEMORY_BASE = "ASC_MEMORY_BASE";
138+
const ASC_TABLE_BASE = "ASC_TABLE_BASE";
138139
const ASC_OPTIMIZE_LEVEL = "ASC_OPTIMIZE_LEVEL";
139140
const ASC_SHRINK_LEVEL = "ASC_SHRINK_LEVEL";
140141
const ASC_FEATURE_SIGN_EXTENSION = "ASC_FEATURE_SIGN_EXTENSION";
@@ -4077,6 +4078,8 @@ declare module "assemblyscript/src/compiler" {
40774078
explicitStart: boolean;
40784079
/** Static memory start offset. */
40794080
memoryBase: number;
4081+
/** Static table start offset. */
4082+
tableBase: number;
40804083
/** Global aliases, mapping alias names as the key to internal names to be aliased as the value. */
40814084
globalAliases: Map<string, string> | null;
40824085
/** Features to activate by default. These are the finished proposals. */
@@ -5057,6 +5060,8 @@ declare module "assemblyscript/src/index" {
50575060
export function setSourceMap(options: Options, sourceMap: boolean): void;
50585061
/** Sets the `memoryBase` option. */
50595062
export function setMemoryBase(options: Options, memoryBase: number): void;
5063+
/** Sets the `tableBase` option. */
5064+
export function setTableBase(options: Options, tableBase: number): void;
50605065
/** Sets a 'globalAliases' value. */
50615066
export function setGlobalAlias(options: Options, alias: string, name: string): void;
50625067
/** Sets the `explicitStart` option. */

dist/assemblyscript.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assemblyscript.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)