RwGitParser class


rw_git_parser.dart

Provides functionality for the parsing of the cmd output of git commands.

Constructors

RwGitParser()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

parseGitShortStatStdout(String rawGitShortStats) ShortStatDto
Parses the stdout of git --shortstat into the representation model. Example of git diff --shortstat:
parseGitStdoutBasedOnNewLine(String gitStdout) List<String>
Parses a stdout git output into a list. The parsing is achieved by splitting the data based on newline characters.
retrieveTagsInBetweenOf(List<String> allTags, String oldTag, String newTag) List<String>
Given a List that contains all the tags of a component, returns a new List that contains only the tags between the oldTag and the newTag, including the newTag (but not the oldTag).