public static PkgdefSegment LineComment(int startIndex, string text) { return(PkgdefTextSegment.Create(startIndex, text, PkgdefSegmentType.LineComment)); }
public static PkgdefSegment NewLine(int startIndex, string text) { return(PkgdefTextSegment.Create(startIndex, text, PkgdefSegmentType.NewLine)); }
public static PkgdefSegment Unrecognized(int startIndex, string text) { return(PkgdefTextSegment.Create(startIndex, text, PkgdefSegmentType.Unrecognized)); }
public static PkgdefSegment Whitespace(int startIndex, string text) { return(PkgdefTextSegment.Create(startIndex, text, PkgdefSegmentType.Whitespace)); }