Vidar Hokstad

Results 16 issues of Vidar Hokstad

**Is your enhancement request related to a problem? Please describe.** Reducing the effort to support additional themes. **Describe the solution you'd like** GtkSourceView implements an XML format for themes. It's...

enhancement-request

If I specify a --consul-addr pointing to a Consul node that is down, I get: INFO[0000] Cluster has no leader or is unreacheable. Get http://10.0.42.1:8500/v1/status/leader?dc=dc1: dial tcp 10.0.42.1:8500: connection refused...

If the Consul connection fails or consul-alerts is otherwise unable to retrieve the health check status, it does two things that IMHO are broken: - It doesn't appear to trigger...

``` class Foo attr_accessor :seq end ``` the attr_accessor bit turns into: ``` # callm :self.:attr_accessor subl $20, %esp movl $2, %ebx movl Foo, %eax movl %eax, (%esp) movl $3481,...

ClassScope should inherity from ModuleScope. ModuleScope needs to hold constants. "Global" constants should be held in a module scope - either make GlobalScope inherit from ModuleScope too, or introduce a...

The parser will treat "foo" by itself as a local variable because it initially doesn't know if it's a local variable or a method call. When we have identified the...

MRI uses type tagging for those. Need to decide whether to do type tagging (more complex code) or do what Python does (memoize small integers) - the benefit of the...

Example: ``` bignum_value.should == 0x8000_0000_0000_0000 ```

I've not yet been able to pinpoint what is going on here. Will try to narrow it down further when I get a chance. But this gives the right results:...