package crs
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=77f77c61e908a6716fa876f5648f662ffaf7e24be4a7889fd6b53121592311bb
sha512=5fc6252650571c4127ebb1e61fecf78c5d4ce35e2832dff47125cda1448e07ea6d4da5e3a9a28643e3491d3594b0ee8857214241f98bd0296ada2c35ea8daa4b
doc/crs.cr-comment/Cr_comment/index.html
Module Cr_commentSource
A user handle as it appears in CR comments and related metadata (such as pull request author).
A Cr_comment.t is an immutable value holding the information and metadata about a CR that was parsed from a file.
Getters
content is the text of the CR with comment markers removed from the beginning and end (if applicable). See also reindented_content.
This is the offset in the original file at which the content field started. This is useful if you need to reparse the content of CRs dynamically while being able to build locations.
This is the leading string that contains the comment markers on the left of the content field, stripped. This may be useful when linting comments and working on CR formatting.
whole_loc is suitable for removal of the entire CR comment. It includes the comments boundaries from path as well.
priority t represents the expectation as to when work on the CR is meant to happen. It is based on the header's qualifier except that XCRs and invalid CRs are meant to be worked on Now.
This digest is computed such that changes in positions in a file, or changes in whitespaces are ignored. It is used by downstream systems to detect that two CRs are equivalent, which in turn may affect when a CR is active.
reindented_content t returns the content of the CR with leading indentation removed or normalized. This is useful for displaying multiple CRs together in a unified format, such as in crs grep. new_line_prefix allows to control the indentation or margin used to produce the new output. It defaults to "". Trailing whitespace are removed from new_line_prefix as needed.
Sorts the supplied list of CRs and outputs it to the supplied out channel, separated by newline characters.
A convenient wrapper for output_list that prints to stdout.
Sort
Private
This module is exported to be used by libraries with strong ties to cr_comment. Its signature may change in breaking ways at any time without prior notice, and outside the guidelines set by semver.
In particular, the intention here is that CRs may only be created using dedicated helpers libraries that are defined in this project, parsing them from files in vcs trees.
Deprecated
The following is deprecated. Please migrate, and do not use in new code.
This was renamed priority. Hint: Run ocamlmig migrate.