Nidin Vinayakan

Results 21 issues of Nidin Vinayakan

**What?** User wants to have typescript style class inheritance. **How?** ```typescript class A { constructor ( ) { } } class B extends A { constructor ( ) { super();...

wontfix ⚔️

**What?** User wants to have generic data type as parameters for functions **How?** Implement generic parameters for functions ```typescript function funcName(arg:T):T{ } ```

v2.0.0
in progress

**What?** User wants to compile specific part of the code to specific target. **How?** ```typescript function () { "use wasm" .... } function () { "use js" .... } function...

feature
v2.0.0
syntax

**What?** User wants to have `sizeof` function to get storage size of a variable or type in bytes. **How?** ```typescript let a = new Array(10); console.log(sizeof a); //48 => 4...

feature
v1.0.0
ready

**What?** User wants to have ecmascript switch statement **How?** ```typescript switch (axis) { case Axis.AxisX: left = this.min.x = point; break; case Axis.AxisY: left = this.min.y = point; break; case...

feature
v2.0.0
ready

**What?** User want to have method overload, exclude constructor from this scope. **How?** ```typescript class Foo { value:float32; constructor() { } add(v:float32):void { this.value = this.value + v; } add(v:int32):void...

feature
v2.0.0

**What?** User want to have tab index on UIL components to navigate through controls and input field from top to bottom and left to right using tab key. **Why?** At...

compileWASM.sh permission fixed

**What?** Any intention to improve this project by adding optional typing to emit optimized fast code? **How?** Using typescript as source language. **Reference** https://github.com/01alchemist/TurboScript

Setting `WebGLRenderer` parameter `logarithmicDepthBuffer : true` causes depth rendering issues. Please see the screenshots. | `logarithmicDepthBuffer : true` | `logarithmicDepthBuffer : false` | | ------------------------------- | --------------------------------- | |||