Patrick Plenefisch
Patrick Plenefisch
Unsure where this should be reported, but about once every 5 minutes I have to pull the power on the picoprobe and DUT and plug them both in again to...
The current `stty size` calls implicitly assume the device to read from is stdin, which is not overridden when `@rl_instream` is manually set to a pts device that isn't mapped...
`(number->string 1.2)` fails by complaining that to_s expect 0 args, but 1 was given. This is because Ruby's Float#to_s doesn't support the radix arg, as Fixnum#to_s does. I have a...
``` ruby class Java::JavafxSceneControl::ScrollPane include JRubyFX::DSL def hbar_policy=(rbenum) java_send "setHbarPolicy", [Java::JavafxSceneControl::ScrollBarPolicy], JRubyFX::Utils::CommonConverters.parse_ruby_symbols(rbenum, Java::JavafxSceneControl::ScrollBarPolicy) end ``` is wrong, Java::JavafxSceneControl::ScrollBarPolicy => Java::JavafxSceneControl::ScrollPane::ScrollBarPolicy
https://bitbucket.org/byteit101/sfx/src/2c438b7d240b73ae9a4aad0de0d964983059393a/lib/designer.rb?at=default#cl-32 parsing https://bitbucket.org/byteit101/sfx/src/2c438b7d240b73ae9a4aad0de0d964983059393a/lib/res/SFX.fxml?at=default
totally skips styleClass
Apparently it happens in Java.
reflection is slow, so if we pre-compile all of it, startup time will be faster (tested with old version reveal startup times goes from 15 seconds to 6 second)
it should be the other way around ``` ruby @location.text = "blah" ``` complains that @location does nt have text= method because its a URL when in a controller class
``` > jfxObject.enum_prop = :enum_value > jfxObject.enum_prop == :enum_value false > jfxObject.enum_prop == EnumType::EnumValue true ``` This is the current behavior pattern of enums. We need to override comparisons so...