Lucas Leblow

Results 39 comments of Lucas Leblow

List of all colors: ``` javascript var colors = ['red', 'blue', 'green', 'purple', 'orange', 'darkred', 'lightred', 'beige', 'darkblue', 'darkgreen', 'cadetblue', 'darkpurple', 'white', 'pink', 'lightblue', 'lightgreen', 'gray', 'black', 'lightgray']; ``` dist/images...

Running this example as-is with latest Carp from the master branch, resulted in: ``` [PARSE ERROR] "REPL" (line 4, column 43): unexpected ")" expecting "&", "~", "@", "'", "`", "%@",...

Is the solution here to use the actual size of the string literal/allocated memory when checking bounds in `String_string_MINUS_set_BANG_`? I am not super familiar with C, but it looks like...

Sorry! I think you are right about #876. I added these 2 lines to `emitCaseEnd`: https://github.com/leblowl/Carp/blob/59758c33f82c9a6c8cf81fece3caaa1adfc0d64b/src/Emit.hs#L374-L375 which causes it to only delete variables when we match by value. But I...

So I think I have a solution to this problem and #843 ... after removing the broken code from #876, I've added this: https://github.com/leblowl/Carp/commit/fa28bef6d1342243ebbdd26cd3b29b630c8ad35c ... basically, when managing memory, in...

After thinking about it more, I think I've answered a few of my questions. I think the wildcard symbol is a valid symbol and can be used just like any...

Sorry for the verbosity, maybe I should use the gitter chat? But thinking about this more, it seems like a more general issue than just with wildcards. Looking at the...

@eriksvedang thanks! I was wondering if there are still some test cases I haven't considered. ``` (deftype Example (A [String String])) (defn f [] (let-do [e (Example.A @"x" @"y")] (match...

Oh, I didn't actually run the function: ``` > (f) Unhandled case in 'match' expression at REPL:6 [RUNTIME ERROR] 'out/Untitled' exited with return value -6. ``` Would it still leak...

Arch Linux 3.18.6-1-ARCH x64 & Chrome 39.0.2171.95 (64-bit) Ok I see where it sets offline to true after network request failures. I guess not emitting those errors when offline is...