Index: third_party/mojo/src/mojo/public/dart/lib/src/union.dart |
diff --git a/third_party/mojo/src/mojo/public/dart/lib/src/union.dart b/third_party/mojo/src/mojo/public/dart/lib/src/union.dart |
deleted file mode 100644 |
index ce5e4d763726a55a500b37079a9b006c47ca35fc..0000000000000000000000000000000000000000 |
--- a/third_party/mojo/src/mojo/public/dart/lib/src/union.dart |
+++ /dev/null |
@@ -1,24 +0,0 @@ |
-// Copyright 2015 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-part of bindings; |
- |
-abstract class Union { |
- void encode(Encoder encoder, int offset); |
-} |
- |
-class UnionError { |
-} |
- |
-class UnsetUnionTagError extends UnionError { |
- final curTag; |
- final requestedTag; |
- |
- UnsetUnionTagError(this.curTag, this.requestedTag); |
- |
- String toString() { |
- return "Tried to read unset union member: {{requestedTag}} " |
- "current member: {{curTag}}."; |
- } |
-} |