Chromium Code Reviews| Index: tests/compiler/dart2js/async_await_syntax_test.dart |
| diff --git a/tests/compiler/dart2js/async_await_syntax_test.dart b/tests/compiler/dart2js/async_await_syntax_test.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ba8983d4c8123c22c68196d67fe6f8a9cb0137d8 |
| --- /dev/null |
| +++ b/tests/compiler/dart2js/async_await_syntax_test.dart |
| @@ -0,0 +1,16 @@ |
| +// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
|
floitsch
2014/11/03 17:55:54
2014
Johnni Winther
2014/11/04 12:24:33
Done.
|
| +// for details. All rights reserved. Use of this source code is governed by a |
| +// BSD-style license that can be found in the LICENSE file. |
| + |
| +// Test that dart2js produces the expected static type warnings and |
| +// compile-time errors for these tests. |
| + |
| +import 'frontend_checker.dart'; |
| + |
| +const List<String> TESTS = const <String>[ |
| + 'compiler/dart2js/async_await_syntax.dart', |
| +]; |
| + |
| +void main(List<String> arguments) { |
| + check(TESTS, arguments: arguments, options: ['--enable-async']); |
| +} |