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

Unified Diff: sky/specs/utils.md

Issue 1142853006: [Specs] Remove all the obsolete specs. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/specs/style2.md ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/specs/utils.md
diff --git a/sky/specs/utils.md b/sky/specs/utils.md
deleted file mode 100644
index de8da83ba75f775d9894cfa2ae7ffd9bd4a729dc..0000000000000000000000000000000000000000
--- a/sky/specs/utils.md
+++ /dev/null
@@ -1,22 +0,0 @@
-Dart Utilities Used By dart:sky
-===============================
-
-The classes defined here are used internally by dart:sky but are
-pretty generic.
-
-```dart
-class Pair<A, B> {
- const Pair(this.a, this.b);
- final A a;
- final B b;
- int get hashCode => a.hashCode ^ b.hashCode;
- bool operator==(other) => other is Pair<A, B> && a == other.a && b == other.b;
-}
-
-// MapOfWeakReferences can be implemented in C, using the C Dart API, apparently
-class MapOfWeakReferences<Key, Value> {
- external operator[](Key key);
- external operator[]=(Key key, Value value);
- external bool containsKey(Key key);
-}
-```
« no previous file with comments | « sky/specs/style2.md ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698