 Chromium Code Reviews
 Chromium Code Reviews Issue 582753002:
  dart2js: add --preserve-uris flag.  (Closed) 
  Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
    
  
    Issue 582753002:
  dart2js: add --preserve-uris flag.  (Closed) 
  Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart| Index: sdk/lib/_internal/compiler/implementation/dart2js.dart | 
| diff --git a/sdk/lib/_internal/compiler/implementation/dart2js.dart b/sdk/lib/_internal/compiler/implementation/dart2js.dart | 
| index e030603ce7551a9cf839f8b8383528c0d350a99b..06b49bfe2880356476a41c1b367532b573e06b85 100644 | 
| --- a/sdk/lib/_internal/compiler/implementation/dart2js.dart | 
| +++ b/sdk/lib/_internal/compiler/implementation/dart2js.dart | 
| @@ -276,6 +276,7 @@ Future compile(List<String> argv) { | 
| new OptionHandler('--out=.+|-o.*', setOutput, multipleArguments: true), | 
| new OptionHandler('--allow-mock-compilation', passThrough), | 
| new OptionHandler('--minify|-m', implyCompilation), | 
| + new OptionHandler('--hide-uris', passThrough), | 
| 
Johnni Winther
2014/09/19 07:54:07
Should we document this is verbose help?
 
floitsch
2014/09/26 12:51:43
Done.
 | 
| new OptionHandler('--force-strip=.*', setStrip), | 
| new OptionHandler('--disable-diagnostic-colors', | 
| (_) => diagnosticHandler.enableColors = false), |