Results 25 comments of Niels Widger

Just as an extra data point, I'm currently upgrading from Buefy v0.8.17 to v0.9.3 and also ran into this issue. Using v0.8.17, I was using the following `b-table-column` template and...

I actually wound up investigating this very same issue today and found myself here. I see the same issue when running a rootfs container with either `--privileged` or `--cap-add=NET_ADMIN`. After...

@aparcar I don't know where it comes from or what other (possibly negative) consequences this might have, but setting network.lan.device in /tmp/board.json to an empty string seems to stop the...

@aparcar Is there a simpler way (perhaps by overriding some files via https://github.com/openwrt/docker/tree/master/rootfs) to just tell OpenWrt to not touch eth0? The rootfs images already contain slight modifications so that...

@mostafa I wonder if it might not be a good idea to have Debugger.Breakpoints return a struct type for each breakpoint. I could totally see wanting to, say, add the...

@MStoykov I agree that getting some feedback/guidance from @dop251 sooner rather than later is probably a good idea. At this point finding out whether he has any interest in merging...

@mostafa @MStoykov Would it make sense to enable debugging with something like an optional `WithDebugMode` option to `Compile`/`CompileAST`/`MustCompile` instead of adding a whole new `CompileASTDebug` function? This would be similar...

@MStoykov Yes sorry I should been a little clearer, I meant changing the signatures to look something like: ``` go type CompileOption func(*compileOptions) func WithDebugMode() CompileOption func Compile(name, src string,...

This looks really cool! The first two questions that came to mind for me was whether the debugger would support source maps (and potentially from non-JS sources, e.g. TS), and...

I might be misinterpreting things, but if `vm.prg.src.Position(vm.prg.sourceOffset(vm.pc)).Line` reports incorrect line numbers and this can be reproduced outside of your debugger branch, I think that might be something @dop251 would...