-
Notifications
You must be signed in to change notification settings - Fork 83
Open
Labels
enhancementNew feature or requestNew feature or request
Description
We need to be able to write to cutomized files when a QuickFix is performed.
For that reason we did a fork and added a parameter named "String? customPath" to the "addGenericFileEdit" from abstract class "ChangeBuilder".
The implementation of the method "addGenericFileEdit" looks like this:
@override void addGenericFileEdit( void Function(analyzer_plugin.FileEditBuilder builder) buildFileEdit, { String? customPath, }) { _operations.add( _innerChangeBuilder.addGenericFileEdit(customPath ?? path, buildFileEdit), ); }
Would it be possible to generally allow writing to customized files.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request