Kevin Moore

Results 252 issues of Kevin Moore

packaged_app
type-enhancement

moved from kevmoo/sweeper.dart#34

type-enhancement

https://github.com/dart-lang/mono_repo/tree/master/mono_repo Make it easier to set up travis, etc

See https://github.com/dart-lang/sdk/blob/031e77eea11a16a5e486a3673549adbd68862c8e/sdk/lib/core/uri.dart#L2233-L2237 ```dart // ASCII, a single percent encoded sequence. codeUnits = new List(3); codeUnits[0] = _PERCENT; codeUnits[1] = _hexDigits.codeUnitAt(char >> 4); codeUnits[2] = _hexDigits.codeUnitAt(char & 0xf); ``` Also in...

request

A proposal to address request https://github.com/dart-lang/language/issues/252 Pending PR: https://github.com/dart-lang/language/pull/680

feature

Unlike `const`, there are no places (that I can think of) where this would still be needed to instantiate a type.

feature

May be tricky to do without convention. An idea: look for a starting commend (double-slash) block of one or more line. If one exists anywhere, make sure the same text...

type-enhancement
lint request
P3