Tsotne Nazarashvili

Results 75 comments of Tsotne Nazarashvili

facts: - hegel does not have `any` (you should not need any in typed language) - hegel does not allow declare inside js file (i think it would be better...

you can't... #37

@JSMonk how would you type `createObj` manually? this does not work ```ts const propertyName = 'propertyName' function createObj(key: _a, prop: _b): { _a: _b } { return { [key]: prop...

WhAT tHe TrIn? ```ts const foo: string = 'foo' const bar = 'bar' function createObj(key, prop) { return { [key]: prop } } const objWithFoo = createObj(foo, 42) const objWithBar...

also we can replace playground with [Theia IDE](https://theia-ide.org/) it's basically highly configurable VS Code Online (i have zero experience with it but most likely it's easier to configure to use...

turns out Theia IDE needs backend service to function (as does VS Code Online) > Theia is not designed to run without the backend. It relies on many JSON-RPC services,...

you need to exclude node_modules and most of your files and try to run hegel on few files or on specific files at a time to find what is causing...

@Raynos apparently i have broken your fix with this #252 i was thinking to restore your implementation but i am confused. should not readme describe package? and if so then...

@JSMonk it should not report error as `new Array` and `[]` create exactly same value --- confusion comes from me editing `should work` into `should not work` because i misread...

array will have empty slots only if you pass single number to constructor and if number is greater than zero (if it's less then zero its a RangeError) implementing this...