Sam Goldman
Sam Goldman
Sorry if this isn't the correct venue for this kind of discussion. If there is a better place to have this discussion (like a mailing list), please let me know....
Fixes #5 I'm not sure I got this 100% correct, so I tried to be minimal. Let me know if I'm missing anything.
This started in 3dc90ef3085bc0b42aa9201e4c6f090fc3168ce7. In my app, I pass a filtered collection into a marionette collection view, which rerenders its children when the collection resets. This reset happens too often...
While testing OCaml 5.2 on the Flow codebase, the new unused attribute warning triggered on this code: https://github.com/facebook/flow/blob/f77ee9d1e4bb18bae47c6e9500a0807fa000f0bb/src/parser/flow_ast_mapper.ml#L1931-L1933 ``` method function_expression_or_method loc (stmt : ('loc, 'loc) Ast.Function.t) = this#function_ loc...
Given a type system with generics+inference+union types, it's useful to be able to instantiate the type parameters at a call site. For example, a function with two generic arguments `T`...
My company has a sandboxed build environment, so we use `opam admin filter` to create a "mini repository" that we can then use to install packages without connecting to the...
My company has a somewhat complicated internal system for managing 3rd party code. As part of this import and build process, the system passes `--enable-static` and `--enable-shared` to all configure...
Given the following contents in `test.ml`: ``` type t = string [@@deriving show] let () = print_endline (show "foo") ``` And a ppx binary to do the transforms: ``` $...
This fixes #280, where OCaml 5.2's new warning about unused-attributes fires. To test, I made this change locally, pinned ppx_deriving to my fork using opam, and followed the repro case...
Differential Revision: D60994060