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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/apiimpl.dart

Issue 582753002: dart2js: add --preserve-uris flag. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update comments in test. Created 6 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 leg_apiimpl; 5 library leg_apiimpl;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import '../compiler.dart' as api; 9 import '../compiler.dart' as api;
10 import 'dart2jslib.dart' as leg; 10 import 'dart2jslib.dart' as leg;
(...skipping 25 matching lines...) Expand all
36 this.environment) 36 this.environment)
37 : this.options = options, 37 : this.options = options,
38 this.allowedLibraryCategories = getAllowedLibraryCategories(options), 38 this.allowedLibraryCategories = getAllowedLibraryCategories(options),
39 super( 39 super(
40 outputProvider: outputProvider, 40 outputProvider: outputProvider,
41 enableTypeAssertions: hasOption(options, '--enable-checked-mode'), 41 enableTypeAssertions: hasOption(options, '--enable-checked-mode'),
42 enableUserAssertions: hasOption(options, '--enable-checked-mode'), 42 enableUserAssertions: hasOption(options, '--enable-checked-mode'),
43 trustTypeAnnotations: 43 trustTypeAnnotations:
44 hasOption(options, '--trust-type-annotations'), 44 hasOption(options, '--trust-type-annotations'),
45 enableMinification: hasOption(options, '--minify'), 45 enableMinification: hasOption(options, '--minify'),
46 hideUris: hasOption(options, '--hide-uris'),
46 enableNativeLiveTypeAnalysis: 47 enableNativeLiveTypeAnalysis:
47 !hasOption(options, '--disable-native-live-type-analysis'), 48 !hasOption(options, '--disable-native-live-type-analysis'),
48 emitJavaScript: !(hasOption(options, '--output-type=dart') || 49 emitJavaScript: !(hasOption(options, '--output-type=dart') ||
49 hasOption(options, '--output-type=dart-multi')), 50 hasOption(options, '--output-type=dart-multi')),
50 dart2dartMultiFile: hasOption(options, '--output-type=dart-multi'), 51 dart2dartMultiFile: hasOption(options, '--output-type=dart-multi'),
51 generateSourceMap: !hasOption(options, '--no-source-maps'), 52 generateSourceMap: !hasOption(options, '--no-source-maps'),
52 analyzeAllFlag: hasOption(options, '--analyze-all'), 53 analyzeAllFlag: hasOption(options, '--analyze-all'),
53 analyzeOnly: hasOption(options, '--analyze-only'), 54 analyzeOnly: hasOption(options, '--analyze-only'),
54 analyzeMain: hasOption(options, '--analyze-main'), 55 analyzeMain: hasOption(options, '--analyze-main'),
55 analyzeSignaturesOnly: 56 analyzeSignaturesOnly:
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 } 345 }
345 346
346 void diagnoseCrashInUserCode(String message, exception, stackTrace) { 347 void diagnoseCrashInUserCode(String message, exception, stackTrace) {
347 hasCrashed = true; 348 hasCrashed = true;
348 print('$message: ${tryToString(exception)}'); 349 print('$message: ${tryToString(exception)}');
349 print(tryToString(stackTrace)); 350 print(tryToString(stackTrace));
350 } 351 }
351 352
352 fromEnvironment(String name) => environment[name]; 353 fromEnvironment(String name) => environment[name];
353 } 354 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698