[][src]Module full_moon::ast::span

A representation of a "contained span", or a span within specific bounds.

Examples of contained spans include:

  • Arguments in a function call use parentheses (...)
  • Indexing a table uses brackets [...]
  • Creating a table uses braces {...}

Contained spans don't contain the inner data, just the start and end bounds.

Structs

ContainedSpan

A contained span with the beginning and ending bounds. Refer to the module documentation for more details.