Barney Boisvert
Barney Boisvert
if the new `loop` option is set false, don't loop around from last slide to first (or the reverse), and allow jumping directly to first/last slide using Home/End respectively
Combining generic types with the psuedo-array notation fails to parse correctly. Consider this code: ``` type Master { history: Decorator[] } ``` This *should* be the same as this block,...
Trying to work around #48 I removed my `@Contracted` annotation, but all the contracts were still morphed into the generated code, and even more interestingly, the emitted bytecode had `@Contracted`...
When debugging code that uses `@Ensures` in IntelliJ, I always receive a NoSuchFieldError from within the `$_gc_computeOldVariables` method for the `__timeStamp__NNN_neverHappenNNNNNNNNNNNNN` field that Groovy automatically adds to the underlying bytecode...
If a validation closure contains expression statements, the list of boolean expressions ends up having nulls in it, which then cause NPEs in AssertStatementCreationUtility.getAssertionStatement.
Given this code (which I believe _should_ be valid): ``` @Ensures({ result.every { t -> t.target == target } }) Collection getMappings(Entity target) { // buncha code... } ``` The...