Nidin Vinayakan

Results 21 issues of Nidin Vinayakan

In order to move fast forward we need to integrate turboscript with typescript compiler. I will create a new branch for it.

enhancement
discussion

**What?** User wants to have basic string support.

v1.0.0 "nice to have"
in progress

**What?** Refine import syntax for * Importing external TurboScript * Importing JavaScript functions Decouple declare native function from import. **Update** ## Import Cases * ### import from local tbs file...

v1.0.0

**What?** User wants to have `instanceof` functions to check whether a variable is an instance of specific class **How?** ```typescript let a = new Array(1); console.log(a instanceof Array); //true console.log(a...

feature
v2.0.0
v1.0.0 "nice to have"
ready

**What?** User wants to have `typeof` function to get underlying type of a variable. **How?** ```typescript let a = new Array(1); console.log(typeof a == Array); //false console.log(typeof a == Array);...

feature
v2.0.0
v1.0.0 "nice to have"
ready

**What?** User wants to have array literal [] to construct arrays **How?** ```typescript let triangles = [ new Triangle(), new Triangle(), new Triangle() ]; ```

feature
v2.0.0
in progress