feat(Change Detection): Implement map changes

This commit is contained in:
Victor Berchet
2014-10-29 21:56:31 +01:00
committed by Rado Kirov
parent 1bd304e7ab
commit 0a766f4654
6 changed files with 509 additions and 4 deletions

View File

@ -123,6 +123,8 @@ class BaseException extends Error {
}
}
const _NAN_KEY = const Object();
// Dart can have identical(str1, str2) == false while str1 == str2
bool looseIdentical(a, b) => a is String && b is String ? a == b : identical(a, b);