Table of Contents

Class CodePosition

Namespace
AiDotNet.ProgramSynthesis.Models
Assembly
AiDotNet.dll

Represents a position in source text.

public sealed class CodePosition
Inheritance
CodePosition
Inherited Members

Properties

Column

1-based column number.

public int Column { get; set; }

Property Value

int

Line

1-based line number.

public int Line { get; set; }

Property Value

int

Offset

0-based absolute offset from the start of the text.

public int Offset { get; set; }

Property Value

int