abstract class Crst::Node

Overview

Base class for all AST nodes in the reStructuredText document tree

All node types inherit from this class and represent different elements of the parsed RST document.

Direct Known Subclasses

Defined in:

crst/nodes.cr

Instance Method Summary

Instance Method Detail

def column : Int32 | Nil #

The 1-based column number where this node starts in the source document


[View source]
def column=(column : Int32 | Nil) #

The 1-based column number where this node starts in the source document


[View source]
def line : Int32 | Nil #

The 1-based line number where this node starts in the source document


[View source]
def line=(line : Int32 | Nil) #

The 1-based line number where this node starts in the source document


[View source]