@@ -39,8 +39,8 @@ import 'src/dds_impl.dart';
3939/// If [enableServicePortFallback] is enabled, DDS will attempt to bind to any
4040/// available port if the specified port is unavailable.
4141///
42- /// If set, the set of [cachedUserTags] will be used to determine which CPU
43- /// samples should be cached by DDS .
42+ /// [cachedUserTags] is deprecated and supplying an argument to it will cause no
43+ /// effect .
4444///
4545/// If provided, [dartExecutable] is the path to the 'dart' executable that
4646/// should be used to spawn the DDS instance. By default, `Platform.executable`
@@ -60,18 +60,16 @@ class DartDevelopmentServiceLauncher {
6060 var args = < String > [
6161 '--${DartDevelopmentServiceOptions .vmServiceUriOption }=$remoteVmServiceUri ' ,
6262 if (serviceUri != null ) ...< String > [
63- '--${DartDevelopmentServiceOptions .bindAddressOption }=${serviceUri .host }' , '--${DartDevelopmentServiceOptions .bindPortOption }=${serviceUri .port }' ,
63+ '--${DartDevelopmentServiceOptions .bindAddressOption }=${serviceUri .host }' ,
64+ '--${DartDevelopmentServiceOptions .bindPortOption }=${serviceUri .port }' ,
6465 ],
6566 if (! enableAuthCodes)
6667 '--${DartDevelopmentServiceOptions .disableServiceAuthCodesFlag }' ,
67- if (serveDevTools)
68- '--${DartDevelopmentServiceOptions .serveDevToolsFlag }' ,
68+ if (serveDevTools) '--${DartDevelopmentServiceOptions .serveDevToolsFlag }' ,
6969 if (devToolsServerAddress != null )
7070 '--${DartDevelopmentServiceOptions .devToolsServerAddressOption }=$devToolsServerAddress ' ,
7171 if (enableServicePortFallback)
7272 '--${DartDevelopmentServiceOptions .enableServicePortFallbackFlag }' ,
73- for (final String tag in cachedUserTags)
74- '--${DartDevelopmentServiceOptions .cachedUserTagsOption }=$tag ' ,
7573 if (google3WorkspaceRoot != null )
7674 '--${DartDevelopmentServiceOptions .google3WorkspaceRootOption }=$google3WorkspaceRoot ' ,
7775 ];
0 commit comments