Diogo Behrens

Results 5 issues of Diogo Behrens

Is there a simple way how to clone functions? I'd like to duplicate a function like this: ```go func duplicate(m *ir.Module, foo string) { for _, f := range m.Funcs...

util

Is there are way with the current implementation to figure out the source position, ie, line column, where a given AST node was parsed from?

It seems that `fmt` does not like `at-exp`. Example: ```racket #lang at-exp racket/base @displayln{some string} ``` Now if I run `raco fmt` I get the following weird output: ``` $...

It seems that the current implementation of `pthread_cond` does not properly capture cases where one would forget to signal or broadcast the waiters. The implementation of `pthread_cond_signal` points to `pthread_cond_brodcast`....

Is it possible to retrieve the source location (using something like `syntax-srcloc`) of tags? Consider this simple example: ```racket > (require peg) > (define-peg/tag identifier (+ (! #\newline #\space) (any-char)))...