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

Unified Diff: tests/compiler/dart2js/analyze_only_test.dart

Issue 11882017: Add --analyze-only flag to dart2js (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased Created 7 years, 11 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 | « sdk/lib/_internal/compiler/implementation/resolution/members.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/analyze_only_test.dart
diff --git a/tests/compiler/dart2js/analyze_only_test.dart b/tests/compiler/dart2js/analyze_only_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..f17aed48b1d02be16c8c524e56c83e4e34c995f3
--- /dev/null
+++ b/tests/compiler/dart2js/analyze_only_test.dart
@@ -0,0 +1,129 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// 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.
+
+// Smoke test of the dart2js compiler API.
+library analyze_only;
+
+import 'dart:async';
+import 'dart:uri';
+
+import '../../utils/dummy_compiler_test.dart' as dummy;
+import '../../../sdk/lib/_internal/compiler/compiler.dart';
+
+runCompiler(String main, List<String> options,
+ onValue(String code, List errors, List warnings)) {
+ List errors = new List();
+ List warnings = new List();
+
+ Future<String> localProvider(Uri uri) {
+ if (uri.scheme != 'main') return dummy.provider(uri);
+ return new Future<String>.immediate(main);
+ }
+
+ void localHandler(Uri uri, int begin, int end,
+ String message, Diagnostic kind) {
+ dummy.handler(uri, begin, end, message, kind);
+ if (kind == Diagnostic.ERROR) {
+ errors.add(message);
+ } else if (kind == Diagnostic.WARNING) {
+ warnings.add(message);
+ }
+ }
+
+ print('-----------------------------------------------');
+ print('main source:\n$main');
+ print('options: $options\n');
+ Future<String> result =
+ compile(new Uri.fromComponents(scheme: 'main'),
+ new Uri.fromComponents(scheme: 'lib', path: '/'),
+ new Uri.fromComponents(scheme: 'package', path: '/'),
+ localProvider, localHandler, options);
+ result.then((String code) {
+ onValue(code, errors, warnings);
+ }, onError: (AsyncError e) {
+ throw 'Compilation failed';
+ });
+}
+
+main() {
+ runCompiler(
+ "",
+ [],
+ (String code, List errors, List warnings) {
+ Expect.isNull(code);
+ Expect.equals(1, errors.length);
+ Expect.equals('Could not find main', errors[0].toString());
+ Expect.isTrue(warnings.isEmpty);
+ });
+
+ runCompiler(
+ "main() {}",
+ [],
+ (String code, List errors, List warnings) {
+ Expect.isNotNull(code);
+ Expect.isTrue(errors.isEmpty);
+ Expect.isTrue(warnings.isEmpty);
+ });
+
+ runCompiler(
+ "",
+ ['--analyze-only'],
+ (String code, List errors, List warnings) {
+ Expect.isNull(code);
+ Expect.equals(1, errors.length);
+ Expect.isTrue(errors[0].toString().startsWith('Could not find main'));
+ Expect.isTrue(warnings.isEmpty);
+ });
+
+ runCompiler(
+ "main() {}",
+ ['--analyze-only'],
+ (String code, List errors, List warnings) {
+ Expect.isNull(code);
+ Expect.isTrue(errors.isEmpty);
+ Expect.isTrue(warnings.isEmpty);
+ });
+
+ runCompiler(
+ "Foo foo; // Unresolved but not analyzed.",
+ ['--analyze-only'],
+ (String code, List errors, List warnings) {
+ Expect.isNull(code);
+ Expect.equals(1, errors.length);
+ Expect.isTrue(errors[0].toString().startsWith('Could not find main'));
+ Expect.isTrue(warnings.isEmpty);
+ });
+
+ runCompiler(
+ """main() {
+ Foo foo; // Unresolved and analyzed.
+ }""",
+ ['--analyze-only'],
+ (String code, List errors, List warnings) {
+ Expect.isNull(code);
+ Expect.isTrue(errors.isEmpty);
+ Expect.equals(1, warnings.length);
+ Expect.equals('Warning: cannot resolve type Foo', warnings[0].toString());
+ });
+
+ runCompiler(
+ "Foo foo; // Unresolved and analyzed.",
+ ['--analyze-only', '--analyze-all'],
+ (String code, List errors, List warnings) {
+ Expect.isNull(code);
+ Expect.isTrue(errors.isEmpty);
+ Expect.equals('Warning: cannot resolve type Foo', warnings[0].toString());
+ });
+
+ runCompiler(
+ """Foo foo; // Unresolved and analyzed.
+ main() {}""",
+ ['--analyze-only', '--analyze-all'],
+ (String code, List errors, List warnings) {
+ Expect.isNull(code);
+ Expect.isTrue(errors.isEmpty);
+ Expect.equals(1, warnings.length);
+ Expect.equals('Warning: cannot resolve type Foo', warnings[0].toString());
+ });
+}
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/resolution/members.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698