Instant icon indicating copy to clipboard operation
Instant copied to clipboard

Research into instant feedback in software engineering

Results 17 Instant issues
Sort by recently updated
recently updated
newest added

Instead of using the status bar, we should show exceptions inline just like any other visualization. Once #21 is done we can let them inspect the exception just like any...

feature
visual

Now that we're just compiling full code, including for the test code, private, protected and internal methods are no longer callable. Need to devise a way to call these.

bug

Once the initial method is enabled with the test code, you should be able to turn on display for methods other than the first enabled. This will require #32.

feature

Support dealing with changes in multiple unsaved files

feature

Currently, object values are simply strings generated by [DebuggerDisplay] and/or .ToString(); We need to be able to take a snapshot of the object's state if we ever want to be...

feature

Targeted identification for a method to be logged (as opposed to applying logging universally). The current system just instruments the whole current file.

optimization

``` csharp int x = 5; [x | 5] ``` ``` csharp int y = 2 [x | 5] int x = 5; ``` Once you add the = 2,...

bug