mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-07-27 04:02:06 +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
8 lines
115 B
TypeScript
8 lines
115 B
TypeScript
var a: i32;
|
|
let b: i32;
|
|
const c: i32 = 0;
|
|
let d = 2;
|
|
|
|
let e; // type expected
|
|
const f: i32; // must be initialized
|