Packages

package model

Package Members

  1. package mutation
  2. package regextree

Type Members

  1. case class Location(start: Position, end: Position) extends Product with Serializable

    A location in the source code which can span multiple lines and/or columns.

    A location in the source code which can span multiple lines and/or columns.

    start

    start weaponregex.model.Position

    end

    end weaponregex.model.Position

    Annotations
    @JSExportAll()
  2. case class Position(line: Int, column: Int) extends Product with Serializable

    A specific spot in the source code based on line and column.

    A specific spot in the source code based on line and column. Stryker uses zero-based indexes. So the first character in a file is at line 0, column 0.

    line

    line number

    column

    column number

    Annotations
    @JSExportAll()

Ungrouped