Null Divide

Results 7 issues of Null Divide

Hello, First of all - great library and good api desing, thanks for publish it. I have react.js project with rich lottie animations and considering porting it to flutter to...

help wanted

Found, that [haxe.Http](https://api.haxe.org/haxe/http/HttpBase.html#onData) don't handle `gzip` encoded responses. So, in `onData` callback string is messy if response `Content-Encoding` is `gzip`. IMHO, it have to be mentioned in docs somehow. It...

Problem that haxe variables are block-level scoped, but as3 ones are not. From ActionScript3 documetation: > ActionScript variables, unlike variables in C++ and Java, do not have block-level scope. A...

got a null pointer exception in this line while trying to profile with hxScout https://github.com/HaxeFoundation/hxcpp/blob/master/src/hx/Telemetry.cpp#L207 ```` Exception thrown: read access violation. this->_last_obj-> was nullptr. ```` this is callstack ![image](https://user-images.githubusercontent.com/2820168/29750682-c5789f5c-8b4c-11e7-90ff-34a79e97e1cb.png)

debugger doesn't fall into for loop, using stepOver command, but surprisingly stepInto works. ``` for (step in 0...steps.length) { if (steps[step] != updatedSteps[step]) ```

bug

If something uncatchable occurs in property getter. And debugger at the time tries to print this property - it crashes. For eg: https://gist.github.com/nulld/71175b3b24fa56dcdb8d9fa169caa9f6 https://github.com/HaxeFoundation/haxe/issues/7253

bug

```` class Test { private var map:Map; public function new() { map = [1 => 1, 2 => 2]; trace(map); } ```` In debugger output ```` print this.map this.map :...