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

Side by Side Diff: dart/samples/google_maps/test/google_maps_test.dart

Issue 60733003: Version 0.8.10.6 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 google_maps_test; 5 library google_maps_test;
6 6
7 // Import `web/index.dart` to ensure analyzer tests run on that file. So there 7 // Import `web/index.dart` to ensure analyzer tests run on that file. So there
8 // is no error related to an unused import, reference `web/index.dart`'s 8 // is no error related to an unused import, reference `web/index.dart`'s
9 // `main()` within this file's `main()`. 9 // `main()` within this file's `main()`.
10 import '../web/index.dart' as google_maps; 10 import '../web/index.dart' as google_maps;
11 11
12 /** 12 /**
13 * This test exists to ensure that the google_maps sample compiles without 13 * This test exists to ensure that the google_maps sample compiles without
14 * errors. 14 * errors.
15 */ 15 */
16 16
17 void main() { 17 void main() {
18 // Reference the google_maps library so that the import isn't marked 18 // Reference the google_maps library so that the import isn't marked
19 // as unused. 19 // as unused.
20 google_maps.main; 20 google_maps.main;
21 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698