alphaTab.importer.alphaTex.AlphaTexAstNodeLocation
Maps an AST node into its respective source code location.
interface AlphaTexAstNodeLocationProperties​
col​
The 1-based column index within the source code.
- JavaScript
- C#
- Kotlin
col: number;double Col { get; set; }var col: Doubleline​
The 1-based line index within the source code.
- JavaScript
- C#
- Kotlin
line: number;double Line { get; set; }var line: Doubleoffset​
The 0-based codepoint offset within the source code.
- JavaScript
- C#
- Kotlin
offset: number;double Offset { get; set; }var offset: Double