Skip to content

Commit 191776d

Browse files
committed
Nightly v0.9.1-nightly.20200212
1 parent 3c124bd commit 191776d

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

dist/asc.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/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: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4348,7 +4348,13 @@ declare module "assemblyscript/src/compiler" {
43484348
/** Makes a release call, releasing the expression's value. Changes the current type to void.*/
43494349
makeRelease(expr: ExpressionRef): ExpressionRef;
43504350
/** Makes a replace, retaining the new expression's value and releasing the old expression's value, in this order. */
4351-
makeReplace(oldExpr: ExpressionRef, newExpr: ExpressionRef, alreadyRetained?: boolean): ExpressionRef;
4351+
makeReplace(
4352+
/** Old value being replaced. */
4353+
oldExpr: ExpressionRef,
4354+
/** New value being assigned. */
4355+
newExpr: ExpressionRef,
4356+
/** Whether the new value is already retained. */
4357+
alreadyRetained?: boolean): ExpressionRef;
43524358
/** Makes an autorelease call at the end of the specified `flow`. */
43534359
makeAutorelease(
43544360
/** Expression to autorelease. */

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)