Skip to content
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "assemblyscript",
"description": "A TypeScript to WebAssembly compiler.",
"name": "assemblyscript-closures-beta",
"description": "AssemblyScript, but with Closures! (experimental).",
"keywords": [
"typescript",
"webassembly",
Expand All @@ -15,10 +15,10 @@
"homepage": "https://assemblyscript.org",
"repository": {
"type": "git",
"url": "https://github.com/AssemblyScript/assemblyscript.git"
"url": "https://github.com/DuncanUszkay1/assemblyscript.git"
},
"bugs": {
"url": "https://github.com/AssemblyScript/assemblyscript/issues"
"url": "https://github.com/DuncanUszkay1/assemblyscript/issues"
},
"dependencies": {
"binaryen": "93.0.0-nightly.20200514",
Expand Down
2 changes: 1 addition & 1 deletion src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export enum CommonFlags {
/** Is a virtual method. */
VIRTUAL = 1 << 26,
/** Is (part of) a closure. */
CLOSURE = 1 << 27,
IN_SCOPE_CLOSURE = 1 << 27,

// Other

Expand Down
Loading