Sha256: d2064bef4c4bf6530c5979ec5ef585a9f18d11a2642fa7f77f8f47c6a32687db
Contents?: true
Size: 1.02 KB
Versions: 110
Compression:
Stored size: 1.02 KB
Contents
module LanguageServer module Protocol module Constant module FailureHandlingKind # # Applying the workspace change is simply aborted if one of the changes # provided fails. All operations executed before the failing operation # stay executed. # ABORT = 'abort' # # All operations are executed transactional. That means they either all # succeed or no changes at all are applied to the workspace. # TRANSACTIONAL = 'transactional' # # If the workspace edit contains only textual file changes they are # executed transactional. If resource changes (create, rename or delete # file) are part of the change the failure handling strategy is abort. # TEXT_ONLY_TRANSACTIONAL = 'textOnlyTransactional' # # The client tries to undo the operations already executed. But there is no # guarantee that this is succeeding. # UNDO = 'undo' end end end end
Version data entries
110 entries across 110 versions & 15 rubygems