C# Class Mosa.Compiler.Pdb.CvLine

Represents a line number mapping for one or more instructions.
The segment:offset pair maps to the very first instruction in a set of instructions, which map to a line. This line covers the addressed instruction and all following instructions until the next line mapping or the end of the line number table is reached, in which case this line mapping covers the remaining instructions in the function.
显示文件 Open project: tgiphil/MOSA-Project

Public Methods

Method Description
CvLine ( int segment, int offset, int line, int startCol, int endCol ) : System

Initializes a new instance of the CvLine struct.

ToString ( ) : string

Returns the fully qualified type name of this instance.

Method Details

CvLine() public method

Initializes a new instance of the CvLine struct.
public CvLine ( int segment, int offset, int line, int startCol, int endCol ) : System
segment int The segment.
offset int The offset.
line int The line.
startCol int The start column on the line.
endCol int The end column on the line.
return System

ToString() public method

Returns the fully qualified type name of this instance.
public ToString ( ) : string
return string