mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-07-15 22:32:16 +00:00
bin
examples
scripts
src
std
tests
binaryen
compiler
parser
class.ts
class.ts.fixture.ts
continue-on-error.ts
continue-on-error.ts.fixture.ts
do.ts
do.ts.fixture.ts
enum.ts
enum.ts.fixture.ts
for.ts
for.ts.fixture.ts
function.ts
function.ts.fixture.ts
import.ts
import.ts.fixture.ts
literals.ts
literals.ts.fixture.ts
namespace.ts
namespace.ts.fixture.ts
regexp.ts
regexp.ts.fixture.ts
string-binding.ts
string-binding.ts.fixture.ts
tsconfig.json
type.ts
type.ts.fixture.ts
var.ts
var.ts.fixture.ts
while.ts
while.ts.fixture.ts
util
README.md
compiler.js
decompiler.js
i64.ts
parser.js
path.ts
tokenizer.ts
.gitignore
.travis.yml
LICENSE
NOTICE
README.md
index.d.ts
index.js
package-lock.json
package.json
tsconfig-base.json
tslint.json
webpack.config.js
11 lines
68 B
TypeScript
11 lines
68 B
TypeScript
while (1) {
|
|
;
|
|
}
|
|
while (false) {
|
|
;
|
|
}
|
|
while ("str") {
|
|
;
|
|
}
|
|
while (1) ;
|