parseCommentString

fun parseCommentString(    tokens: List<AbstractStacksToken>,     sectionStartLocations: List<Int>,     string: String,     commentStartLine: Int,     linkingFileMap: LinkingFileMap): AvailComment?

Answer the list of tokens that comprise a Avail comment.

Return

The resulting AvailComment of the token parsing.

Parameters

tokens

The Stacks tokens to be parsed.

sectionStartLocations

The index locations where a new SectionKeywordStacksToken begins in in the token list to be parsed.

string

The name of the module from which the comment originates.

commentStartLine

The line where the comment being parsed starts in the module.

linkingFileMap

A map for all the files in stacks

Throws