tuil
ReferencePackages@mwillbanks/tuil-codeAPI

IncrementalSyntaxTree

interface exported by @mwillbanks/tuil-code.

View rawEdit

interface

Public interface exported by @mwillbanks/tuil-code.

export interface IncrementalSyntaxTree {
  readonly nodes: readonly IncrementalSyntaxNode[];
  readonly source?: string;
  readonly incremental?: boolean;
  readonly revision?: number;
}

Members

MemberTypeRequiredDescriptionRelated types
nodesreadonly IncrementalSyntaxNode[]YesThe nodes member uses the readonly IncrementalSyntaxNode[] contract.IncrementalSyntaxNode
sourcestring | undefinedNoThe source member uses the string | undefined contract.
incrementalboolean | undefinedNoThe incremental member uses the boolean | undefined contract.
revisionnumber | undefinedNoThe revision member uses the number | undefined contract.

Parameters

This declaration has no public members.

Returns

This declaration does not return a value.

Throws

No thrown errors are documented for this declaration.

Source

View the secondary source reference

Package

@mwillbanks/tuil-code

On this page