Index: sky/examples/fn/lib/fn.dart |
diff --git a/sky/examples/fn/lib/fn.dart b/sky/examples/fn/lib/fn.dart |
deleted file mode 100644 |
index a1d6e2ba471eeba21a286b555a243969f0d76b81..0000000000000000000000000000000000000000 |
--- a/sky/examples/fn/lib/fn.dart |
+++ /dev/null |
@@ -1,32 +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. |
- |
-library fn; |
- |
-import 'dart:async'; |
-import 'dart:collection'; |
-import 'dart:sky' as sky; |
-import 'reflect.dart' as reflect; |
- |
-part 'component.dart'; |
-part 'event.dart'; |
-part 'node.dart'; |
-part 'style.dart'; |
- |
-bool _checkedMode; |
- |
-bool _debugWarnings() { |
- void testFn(double i) {} |
- |
- if (_checkedMode == null) { |
- _checkedMode = false; |
- try { |
- testFn('not a double'); |
- } catch (ex) { |
- _checkedMode = true; |
- } |
- } |
- |
- return _checkedMode; |
-} |