├── .editorconfig ├── .gitignore ├── LICENSE.txt ├── README.md ├── assembly ├── index.ts └── tsconfig.json ├── benchmark.js ├── demo.js ├── index.html ├── index.js └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguo/assemblyscript-demo/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguo/assemblyscript-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguo/assemblyscript-demo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguo/assemblyscript-demo/HEAD/README.md -------------------------------------------------------------------------------- /assembly/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguo/assemblyscript-demo/HEAD/assembly/index.ts -------------------------------------------------------------------------------- /assembly/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguo/assemblyscript-demo/HEAD/assembly/tsconfig.json -------------------------------------------------------------------------------- /benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguo/assemblyscript-demo/HEAD/benchmark.js -------------------------------------------------------------------------------- /demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguo/assemblyscript-demo/HEAD/demo.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguo/assemblyscript-demo/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguo/assemblyscript-demo/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dguo/assemblyscript-demo/HEAD/package.json --------------------------------------------------------------------------------