Skip to content

Commit

Permalink
fix(dccd): fix DirtyCheckingRecord.toString() throws an exception
Browse files Browse the repository at this point in the history
  • Loading branch information
vicb authored and Diana Salsbury committed Jul 16, 2014
1 parent 0e99f9d commit c10ab83
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lib/change_detection/dirty_checking_change_detector.dart
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,14 @@ class _ChangeIterator<H> implements Iterator<Record<H>>{
*/
class DirtyCheckingRecord<H> implements Record<H>, WatchRecord<H> {
static const List<String> _MODE_NAMES =
const ['MARKER', 'IDENT', 'GETTER', 'MAP[]', 'ITERABLE', 'MAP'];
const ['MARKER',
'NOOP',
'IDENTITY',
'GETTER',
'GETTER / CLOSURE'
'MAP[]',
'ITERABLE',
'MAP'];
static const int _MODE_MARKER_ = 0;
static const int _MODE_NOOP_ = 1;
static const int _MODE_IDENTITY_ = 2;
Expand Down

0 comments on commit c10ab83

Please sign in to comment.