Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: pkg/yaml/lib/deep_equals.dart

Issue 11622011: Restructure YAML package suitable for pub lish (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: add yaml exclude Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/yaml/lib/constructor.dart ('k') | pkg/yaml/lib/model.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library deep_equals; 5 library deep_equals;
6 6
7 /// Returns whether two objects are structurally equivalent. This considers NaN 7 /// Returns whether two objects are structurally equivalent. This considers NaN
8 /// values to be equivalent. It also handles self-referential structures. 8 /// values to be equivalent. It also handles self-referential structures.
9 bool deepEquals(obj1, obj2, [List parents1, List parents2]) { 9 bool deepEquals(obj1, obj2, [List parents1, List parents2]) {
10 if (identical(obj1, obj2)) return true; 10 if (identical(obj1, obj2)) return true;
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 63
64 return true; 64 return true;
65 } 65 }
66 66
67 /// Returns whether two doubles are equivalent. This differs from `d1 == d2` in 67 /// Returns whether two doubles are equivalent. This differs from `d1 == d2` in
68 /// that it considers NaN to be equal to itself. 68 /// that it considers NaN to be equal to itself.
69 bool _doubleEquals(double d1, double d2) { 69 bool _doubleEquals(double d1, double d2) {
70 if (d1.isNaN && d2.isNaN) return true; 70 if (d1.isNaN && d2.isNaN) return true;
71 return d1 == d2; 71 return d1 == d2;
72 } 72 }
OLDNEW
« no previous file with comments | « pkg/yaml/lib/constructor.dart ('k') | pkg/yaml/lib/model.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698