Skip to content

Tags: bytezeroseven/assemblyscript

Tags

v0.27.1

Toggle v0.27.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: Move compilation of instanceof helpers post override discovery (A…

…ssemblyScript#2661)

v0.27.0

Toggle v0.27.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Check global uses more strictly (AssemblyScript#2632)

BREAKING CHANGE: Use of global variables (in the Wasm sense) is now checked more strictly to prevent undesirable execution order. If the compiler detects that it is possible that a variable might not have been initialized when accessed, a diagnostic is produced. It cannot be ruled out that some amount of existing code will be affected, since such checks are performed at runtime in JS but are proven at compile time in AS. If encountered, the fix is to move the variable's declaration up, say before the first invocation of a function (that might call another function) accessing the variable, so it is guaranteed that it is initialized before its first use.

v0.26.7

Toggle v0.26.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: Detect recursive types early (AssemblyScript#2634)

v0.26.6

Toggle v0.26.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: Handle all possible element kinds when walking exports (Assembly…

…Script#2631)

v0.26.5

Toggle v0.26.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add reorder-globals pass to pass pipeline (AssemblyScript#2625)

v0.26.4

Toggle v0.26.4's commit message
Remove redundant introduction link

v0.26.3

Toggle v0.26.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: Provide an easily reusable Web SDK (AssemblyScript#2615)

v0.26.2

Toggle v0.26.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: Maintain onNewLine state on subsequent lookahead (AssemblyScript…

…#2613)

v0.26.1

Toggle v0.26.1's commit message
fix: Mitigate endless loop in (invalid) override discovery

v0.26.0

Toggle v0.26.0's commit message
fix: Defuse assert in lookupPropertyAccessExpression after prior error