Jeff Evans

Results 16 issues of Jeff Evans

I've been looking for a JSON parser in Clojure that can capture the character positions (from the source) for parsed structures. See, for example, the [zserge/jsmn project](https://github.com/zserge/jsmn). If this seems...

Consider the following REPL session, in which version `0.3.2` of the library is being used (as per the deps.edn guide [here](https://clojure.org/guides/deps_and_cli#_running_a_repl_and_using_libraries)). ``` (import java.time.temporal.ChronoField) (import java.time.temporal.Temporal) (def my-local-time (t/local-time 1...

bug

Consider the following test ``` import org.junit.Test; import org.mockito.Mockito; public class MockitoTest { private static class A { A(String a, int b, AutoCloseable... c) { System.out.println("Constructor called"); } } @Test...

I am working on a problem transferring a file via SFTP (using sshj 0.27.0) to Amazon S3. I'm encountering an Amazon SDK exception along the following lines: `com.amazonaws.SdkClientException: Data read...

Adding mockitoJunitJupiter test dependency to :connect:runtime project Converting class level mocks from EasyMock -> Mockito Changing first test (testJoinAssignment) to use Mockito constructs, along with its assertion helper methods

connect

I'm not sure if master is the right head to point to in the new repo, but this seems to fix the bootstrap build. Also, `boot test` passes with this...

Consider the following snippet, run against Icepick 2.4.0: ``` var icepick = require("icepick") const BEFORE = { first: { name: "First", items: [{key: "first-a", value: 12}] }, second: { name:...

Merging `InsertBeforeIndex` protocol into new `IndexedOps` protocol for optimized indexed based operations (which now includes inserting before and removing at) Updating `nthpath` and `keypath` to use new helper fns Adding...

Add implementation for IRecord almost identical to that of Object, but using a new empty-record fn Throwing exception from map-keys-transform, since it doesn't really make sense to change the keys...

Adding self-host testing infrastructure and scripts (including tach plugin) Incorporating cgrand/macrovich plugin to separate macro definitions from usage in specter.cljc Changing tests to use :require with :refer-macros to bring in...