Tzvetan Mikov

Results 278 comments of Tzvetan Mikov

@lucaswitch RN still hasn't released a version that includes the latest Hermes improvements. Even RN 0.72 includes a version of Hermes from March. The good news is that we are...

@vksgautam1986 https://github.com/facebook/hermes/commit/628647010420d988ec4a08ec63742904c4bc785a

Hi, clearly this source is getting transformed by Babel or another tool first. Can you please provide the source that is actually executed by Hermes, after the transformation pipeline?

@rogeriomoura this lowering doesn't seem to correspond exactly to the original code: `fetching` is missing, `debounceSetState()` has been changed. Can you confirm that this is *exactly* what Hermes is running...

@rogeriomoura are you saying that your transformation pipeline **deleted** the property `fetching` and changed the call `debounceSetState()` to `setState()`?

@rogeriomoura I couldn't reproduce your problem by running the following code: ``` var gPrev = {} var doErr = 0; function debounceSetState(func) { gPrev = func(gPrev); if (++doErr == 1)...

@rpopovici can you provide the transpiled version of the above code? Also, does `print(err)` output `undefined`?

@rpopovici, thanks! Hmm, to me this seems to show that `err` has the correct value (not 'undefined'), but there might be a problem with displaying it in the debugger? The...

@rpopovici I was able to reproduce the problem with the `hdb` tool and this simple source: ``` function foo(a) { try { throw a+10; } catch (err) { print(err); var...