From 228fb96c4ae78e206a87d4f88e7bb9c58ed096f0 Mon Sep 17 00:00:00 2001 From: Andreas Kollegger Date: Sun, 22 Nov 2020 18:58:44 +0100 Subject: [PATCH] added api docs for gramseq and textliteral union type for literals --- docs/api/interfaces/gram_ast.gramseq-1.html | 260 ++++++++++++++++ docs/api/interfaces/gram_ast.textliteral.html | 288 ++++++++++++++++++ 2 files changed, 548 insertions(+) create mode 100644 docs/api/interfaces/gram_ast.gramseq-1.html create mode 100644 docs/api/interfaces/gram_ast.textliteral.html diff --git a/docs/api/interfaces/gram_ast.gramseq-1.html b/docs/api/interfaces/gram_ast.gramseq-1.html new file mode 100644 index 0000000..e269a4f --- /dev/null +++ b/docs/api/interfaces/gram_ast.gramseq-1.html @@ -0,0 +1,260 @@ + + + + + + GramSeq | gram.js API + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +
+
+
+
+
+ +
+

Interface GramSeq

+
+
+

A GramSeq is a graph expressed as a sequence of paths.

+
+
+
+

Hierarchy

+
    +
  • + Parent +
      +
    • + GramSeq +
    • +
    +
  • +
+
+
+

Indexable

+
[key: string]: unknown
+
+
+

A GramSeq is a graph expressed as a sequence of paths.

+
+
+
+
+
+
+
+

Properties

+ +
+
+
+
+
+

Properties

+
+ +

children

+
children: GramPath[]
+ +
+
+ +

Optional data

+
data: Data
+ +
+
+

Information from the ecosystem.

+
+
+
+
+ +

Optional position

+
position: Position
+ +
+
+

Location of a node in a source document. + Must not be present if a node is generated.

+
+
+
+
+ +

type

+
type: "seq"
+ +
+
+

Type discriminator for this AST element, aways 'seq'.

+
+
+
+
+ +
+
+ +
+
+
+ +
+ + + \ No newline at end of file diff --git a/docs/api/interfaces/gram_ast.textliteral.html b/docs/api/interfaces/gram_ast.textliteral.html new file mode 100644 index 0000000..9689af2 --- /dev/null +++ b/docs/api/interfaces/gram_ast.textliteral.html @@ -0,0 +1,288 @@ + + + + + + TextLiteral | gram.js API + + + + + +
+
+
+
+ +
+
+ Options +
+
+ All +
    +
  • Public
  • +
  • Public/Protected
  • +
  • All
  • +
+
+ + + + + + +
+
+ Menu +
+
+
+
+
+
+ +
+
+
+
+
+ +
+

Interface TextLiteral

+
+
+

Base interface for literals, all of which + only provide textual value representations.

+
+
+
+

Hierarchy

+ +
+
+

Indexable

+
[key: string]: unknown
+
+
+

Base interface for literals, all of which + only provide textual value representations.

+
+
+
+
+
+
+
+

Properties

+ +
+
+
+
+
+

Properties

+
+ +

Optional data

+
data: Data
+ +
+
+

Information from the ecosystem.

+
+
+
+
+ +

Optional position

+
position: Position
+ +
+
+

Location of a node in a source document. + Must not be present if a node is generated.

+
+
+
+
+ +

type

+
type: string
+ +
+
+

The variant of a node.

+
+
+
+
+ +

value

+
value: string
+ +
+
+ +
+
+ +
+
+
+ +
+ + + \ No newline at end of file