thanos icon indicating copy to clipboard operation
thanos copied to clipboard

Ruby -> Go at the snap of your fingers

Results 18 thanos issues
Sort by recently updated
recently updated
newest added

Currently won't even get lexed correctly.

1A

This is very low priority since I have never actually seen a literal of either in production code, but the literals are a part of the grammar. Both literals and...

1A

Because inheritance currently references the same method definition in memory, if an inherited method calls a method that is overridden on a child class, any changes to that method (signature,...

Ruby that assigns to a variable named `range` will fail to compile. These variable names should get automatically renamed.

Currently `has_key?` gets treated like any other method, which means that this Ruby: ```ruby if h.has_key?(:foo) puts "has key foo" end ``` gets compiled to this Go: ```go var hasKey...

The Ruby parse tree stores all comments by line number, and every node is annotated with the source line number, but the Go stdlib's AST package makes it exceedingly difficult...