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
Line
1-based line number.
public int Line { get; set; }
Property Value
Offset
0-based absolute offset from the start of the text.
public int Offset { get; set; }