Remove preview from dartfix api in favor of opening the preview automatically
Change-Id: I7f2dd4c97a99ec9e2d28f2a06778c247150a0632 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/128286 Reviewed-by: Mike Fairhurst <mfairhurst@google.com> Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
This commit is contained in:
committed by
commit-bot@chromium.org
parent
f95ef086a9
commit
affd81b143
@@ -500,15 +500,10 @@ public interface AnalysisServer {
|
||||
* @param excludedFixes A list of names indicating which fixes should not be applied. If a name is
|
||||
* specified that does not match the name of a known fix, an error of type UNKNOWN_FIX will
|
||||
* be generated.
|
||||
* @param preview A flag indicating whether the user has requested that the preview tool be opened.
|
||||
* Defaults to false.
|
||||
* @param port The port to be used to listen for and respond to http requests for preview pages.
|
||||
* @param outputDir The absolute and normalized path to a directory to which non-nullability
|
||||
* migration output will be written. The output is only produced if the non-nullable fix is
|
||||
* included. Files in the directory might be overwritten, but no previously existing files
|
||||
* will be deleted.
|
||||
* @param port Deprecated: This field is now ignored by server.
|
||||
* @param outputDir Deprecated: This field is now ignored by server.
|
||||
*/
|
||||
public void edit_dartfix(List<String> included, List<String> includedFixes, boolean includePedanticFixes, boolean includeRequiredFixes, List<String> excludedFixes, boolean preview, int port, String outputDir, DartfixConsumer consumer);
|
||||
public void edit_dartfix(List<String> included, List<String> includedFixes, boolean includePedanticFixes, boolean includeRequiredFixes, List<String> excludedFixes, int port, String outputDir, DartfixConsumer consumer);
|
||||
|
||||
/**
|
||||
* {@code edit.format}
|
||||
|
||||
Reference in New Issue
Block a user