Rob Ryan
Rob Ryan
Just to note for cleanup that is can be closed as it was implemented here: https://github.com/SerenityOS/jakt/commit/67bc8b31a517cf4dd99407b8568c1f3dd73bee0c
This seems to be fixed at some point: ``` struct Foo { bar: [T] idx: usize public function get(this) throws -> T { return .bar[.idx] } } function main() {...
This a list of issues found from the samples directory. - [x] 19) Spacing after as! i64 eg. In samples/basics/bubble_sort.jakt ``` while i < values.size() as! i64-1 { ``` Should...
Was having a look at the c/c++ switch statement which does allow the default to be anywhere. So similar to that it would make some sense to change the value...
That seems okay, it can be that the order matters except for the else case that only matches if none of the other cases do.
At the simplest level it seems enough to stop the preventdefault on y movement like this: touchMove: function (e){ var touch; if (self.mouseDown){ touch = e.originalEvent.touches[0]; self._inputmove(touch.clientX, touch.clientY); if (e.preventDefault...