Ivan Krasilnikov

Results 6 comments of Ivan Krasilnikov

Still broken, both on debian buster and elementary: ``` $ sudo apt install gir1.2-granite-1.0 $ python3 -c 'from gi.repository import Granite; Granite.WidgetsSourceList()' -c:1: PyGIWarning: Granite was imported without specifying a...

Yes, works for me now on debian with libgranite 5.2.5-1. Thanks for fixing! The second issue I mentioned - not being able to override gobject virtual method get_context_menu from python...

> Microsoft solves this issue on their Hypervisor with a RTC device `/dev/ptp_hyperv`, and configuring chrony to use it, see https://learn.microsoft.com/en-us/azure/virtual-machines/linux/time-sync#chrony Yea and there's `/dev/ptp_kvm` under KVM. But problem is:...

Digging further, it looks like the same bug as in https://github.com/boa-dev/boa/issues/4525 There's Function used in the code like: ```js Function('_result', code)(resultObj); ``` If replaced with equivalent eval(), everything works: ```js...

I added 7 fields to JS_StackFrame - it was just the easiest way for me to pass them through to code inside CASE blocks while not having access to JS_CallInternal's...

Oh and there would be of course some more stack usage at any transitions out of tail-callers where they need to spill stuff to stack, but I haven't measured it....