| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
/// A list of arguments from the comman-line used to start the server.nit: typo
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
/// A list of arguments from the comman-line used to start the server.Brian Wilkersonnit: typo
Done
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
1 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: pkg/analysis_server/tool/log_player/server_driver.dart
Insertions: 1, Deletions: 1.
@@ -15,7 +15,7 @@
/// The protocol being used by the server.
final ServerProtocol _protocol;
- /// A list of arguments from the comman-line used to start the server.
+ /// A list of arguments from the command-line used to start the server.
final List<String> arguments;
/// The sink used to send messages from the IDE to the server's stdin, or
```
Code cleanup in log player and server driver
Setting the command-line arguments separately from the protocol used to
be necessary, but it no long is, so it's cleaner to just set the command
line arguments when creating the server and moving the handling of the
protocol option into the server. This resulted in a cleaner API and
implementation.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |