DartBot

Results 132 issues of DartBot

_This issue was originally filed by @Cat-sushi_ --- The code below is illegal with the current language specification.   class C {     final x;     const C(this.x);   }   class D {     final...

feature
enhanced-const

**Issue by [seaneagan](https://github.com/seaneagan)** _Originally opened as dart-lang/sdk#16022_ --- I can't prove this, but I feel like non-negatable is more common. For example, --help, --verbose, --quiet, --version are all non-negatable. Also,...

type-enhancement

**Issue by [munificent](https://github.com/munificent)** _Originally opened as dart-lang/sdk#19806_ --- Right now, args follows Unix conventions (such as they are) for option syntax. Many Windows applications also do that, but Windows also...

type-enhancement

**Issue by [seaneagan](https://github.com/seaneagan)** _Originally opened as dart-lang/sdk#15705_ --- Currently it looks something like:   var allowed = {     'x': 'x help',     'y': 'y help',     'z': 'z help',   }   parser.addOption('foo', allowed: allowed.keys.toList(),...

type-enhancement
P3

_Originally opened as dart-lang/sdk#12771_ _This issue was originally filed by googlegroups...@kaioa.com_ --- Right now, the options Map is private. ArgResults defines the [] operator to allow Map-like read-only access. This...

type-enhancement

**Issue by [seaneagan](https://github.com/seaneagan)** _Originally opened as dart-lang/sdk#20079_ --- `callback` doesn't seem to provide much benefit over just accessing the value from the results. If it could perform validation and parsing...

type-enhancement

**Issue by [nex3](https://github.com/nex3)** _Originally opened as dart-lang/sdk#18729_ --- Sometimes it's useful to be able to compare nested object structures that can contain self-referential loops. Currently DeepCollectionEquality causes a stack overflow...

enhancement

**Issue by [kaisellgren](https://github.com/kaisellgren)** _Originally opened as dart-lang/sdk#4367_ --- Support for bcrypt and/or scrypt is needed for secure password hashing purposes. Here's a reference for scrypt: http://www.tarsnap.com/scrypt.html

type-enhancement
contributions-welcome

_Originally opened as dart-lang/sdk#4611_ _This issue was originally filed by dha...@google.com_ --- Test code: new File('recordroyale.ogg').readAsBytes().then((buf) {   var md5 = new MD5();   md5.update(buf);   print(md5.digest()); }); where 'recordroyale.ogg' is about six...

type-bug
P2

**Issue by [jwendel](https://github.com/jwendel)** _Originally opened as dart-lang/sdk#9822_ --- **What steps will reproduce the problem?** The current crypto library only supports SHA-1 and a limited subset of SHA-2 (SHA-256). While this...

type-enhancement
contributions-welcome