NumberOfLines

/**
* A number-of-lines object for a location, including the number of lines, lines of code and lines of comments.
*/

Inherit from NumberOfLinesDO

Primary key: location_oid: int

schema NumberOfLines extends NumberOfLinesDO {
  @primary location_oid: int,
  lines: int,
  code_lines: int,
  comment_lines: int
}

NumberOfLines::getLines

pub fn getLines(self: NumberOfLines) -> int;

NumberOfLines::getCodeLines

pub fn getCodeLines(self: NumberOfLines) -> int;

NumberOfLines::__all__

Data constraint method.

pub fn __all__(db: JavascriptDB) -> *NumberOfLines;

NumberOfLines::getCommentLines

pub fn getCommentLines(self: NumberOfLines) -> int;