Lasse R.H. Nielsen
Lasse R.H. Nielsen
If I press "Ctrl+F" to search for something in the page or in the code, I get a *five second* popup at the bottom of the page saying "Unimplemented: find"....
I press Tab while editing code, and the "(+) New" button above gets highlighted. That's already problematic, because I might want to use tab to indent, and losing focus is...
When I go to dartpad.dev (writing `dartpad.dev` in the address line and pressing return), the page loads, but focus is no-where. The focus should be in the source editor component,...
In the current DartPad, ctrl+enter will run the program. The new DartPad appears to not have such a shortcut, so you have to use the mouse. Actually, it seems the...
When I leave the new DartPad as the active tab in Chrome, and my Linux laptop locks the screen (possibly suspends, don't really know since it resumes on any keypress),...
Example: ```dart class Box { T value; /// Performs [action] on [value]. void act(void action(T value)); } ... class ShoeBox extends Box { void act(void walk(T value)); } ``` In...
In "A.2.3 Drop other special semantic provisions for null", you might also want to include the rule that throwing null instead throws the NullThrownError. There is no particular reason for...
Built on top of Brian's conversion of the first three encodings. Added a script to generate the string constants from the official table files, just to be safe. (We can...
```dart var x = [ "long value that won't fit everywhere", "long value that won't fit everywhere", "long value that won't fit everywhere" ]; get y => [ "long value...
Dart-format should remove unnecessary trailing whitespace, also if it's the first line of a multiline string literal. The syntax allows whitespace, and backslash-preceded whitespace, to be ignored if it's the...