Refactor AsyncOperation to use _name property and implement git/foldername prefix #17
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR refactors the
AsyncOperation
base class to improve encapsulation and provide more descriptive operation names by implementing the requirements outlined in the issue.Changes Made
Base Class Refactoring
name
to_name
in theAsyncOperation
base classname
property: Returnsgit/{foldername}/{_name}
format wherefoldername
is the root git repository directory name_name
property is now the internal implementation detail that subclasses overrideSubclass Updates
Updated all 14 subclasses to use
_name
instead ofname
:CreateDirOperation
,EditFileOperation
,MoveDirOperation
,RemoveFileOperation
,RenameOperation
GitAddOperation
,GitCheckoutOperation
,GitCommitOperation
,GitCreateBranchOperation
,GitDiffOperation
,GitPullOperation
,GitPushOperation
,GitStatusOperation
ExecMakeTarget
,PredefinedCommands
Test Updates
tool.name.endswith("/git_status")
)Example
Before:
After:
Benefits
_name
) and public (name
) interfacesTesting
Fixes #14.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.