astn 0.110.19 → 0.110.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. package/dist/bin/convert_to_json.js +10 -20
  2. package/dist/bin/validate_astn.js +9 -19
  3. package/dist/generated/generic/astn_target.d.ts +186 -0
  4. package/dist/generated/generic/astn_target.js +3 -0
  5. package/dist/generated/generic/resolve.d.ts +2 -2
  6. package/dist/generated/generic/resolve.js +14 -22
  7. package/dist/generated/implementation/generic/resolve.d.ts +81 -0
  8. package/dist/generated/implementation/generic/resolve.js +251 -0
  9. package/dist/generated/implementation/generic/unmarshall.d.ts +37 -0
  10. package/dist/generated/implementation/generic/unmarshall.js +168 -0
  11. package/dist/generated/implementation/schemas/ast/marshall.d.ts +7 -0
  12. package/dist/generated/implementation/schemas/ast/marshall.js +227 -0
  13. package/dist/generated/implementation/schemas/ast/serializer.d.ts +14 -0
  14. package/dist/generated/implementation/schemas/ast/serializer.js +328 -0
  15. package/dist/generated/implementation/schemas/ast/unmarshall.d.ts +7 -0
  16. package/dist/generated/implementation/schemas/ast/unmarshall.js +239 -0
  17. package/dist/generated/implementation/schemas/ide/marshall.d.ts +4 -0
  18. package/dist/generated/implementation/schemas/ide/marshall.js +81 -0
  19. package/dist/generated/implementation/schemas/ide/serializer.d.ts +3 -0
  20. package/dist/generated/implementation/schemas/ide/serializer.js +72 -0
  21. package/dist/generated/implementation/schemas/ide/unmarshall.d.ts +4 -0
  22. package/dist/generated/implementation/schemas/ide/unmarshall.js +79 -0
  23. package/dist/generated/implementation/schemas/parse_result/marshall.d.ts +3 -0
  24. package/dist/generated/implementation/schemas/parse_result/marshall.js +184 -0
  25. package/dist/generated/implementation/schemas/parse_result/serializer.d.ts +6 -0
  26. package/dist/generated/implementation/schemas/parse_result/serializer.js +288 -0
  27. package/dist/generated/implementation/schemas/parse_result/unmarshall.d.ts +3 -0
  28. package/dist/generated/implementation/schemas/parse_result/unmarshall.js +103 -0
  29. package/dist/generated/implementation/schemas/target/marshall.d.ts +3 -0
  30. package/dist/generated/implementation/schemas/target/marshall.js +122 -0
  31. package/dist/generated/implementation/schemas/target/serializer.d.ts +3 -0
  32. package/dist/generated/implementation/schemas/target/serializer.js +122 -0
  33. package/dist/generated/implementation/schemas/target/unmarshall.d.ts +3 -0
  34. package/dist/generated/implementation/schemas/target/unmarshall.js +81 -0
  35. package/dist/generated/implementation/schemas/token/marshall.d.ts +11 -0
  36. package/dist/generated/implementation/schemas/token/marshall.js +230 -0
  37. package/dist/generated/implementation/schemas/token/unmarshall.d.ts +11 -0
  38. package/dist/generated/implementation/schemas/token/unmarshall.js +180 -0
  39. package/dist/generated/interface/core/astn_source.d.ts +116 -0
  40. package/dist/generated/interface/core/astn_source.js +3 -0
  41. package/dist/generated/interface/core/astn_target.d.ts +186 -0
  42. package/dist/generated/interface/core/astn_target.js +3 -0
  43. package/dist/generated/interface/core/resolve.d.ts +11 -0
  44. package/dist/generated/interface/core/resolve.js +3 -0
  45. package/dist/generated/interface/core/unconstrained.d.ts +19 -0
  46. package/dist/generated/interface/core/unconstrained.js +3 -0
  47. package/dist/generated/interface/core/unresolved.d.ts +162 -13
  48. package/dist/generated/interface/generic/resolve.d.ts +11 -0
  49. package/dist/generated/interface/generic/resolve.js +3 -0
  50. package/dist/generated/interface/schemas/ast/marshall.d.ts +226 -0
  51. package/dist/generated/interface/schemas/ast/marshall.js +3 -0
  52. package/dist/generated/interface/schemas/ast/migrate_boilerplate.d.ts +134 -0
  53. package/dist/generated/interface/schemas/ast/migrate_boilerplate.js +3 -0
  54. package/dist/generated/interface/schemas/ast/serializer.d.ts +436 -0
  55. package/dist/generated/interface/schemas/ast/serializer.js +3 -0
  56. package/dist/generated/interface/schemas/ast/unconstrained.d.ts +20 -210
  57. package/dist/generated/interface/schemas/ast/unmarshall.d.ts +134 -0
  58. package/dist/generated/interface/schemas/ast/unmarshall.js +3 -0
  59. package/dist/generated/interface/schemas/ide/marshall.d.ts +136 -0
  60. package/dist/generated/interface/schemas/ide/marshall.js +3 -0
  61. package/dist/generated/interface/schemas/ide/migrate_boilerplate.d.ts +68 -0
  62. package/dist/generated/interface/schemas/ide/migrate_boilerplate.js +3 -0
  63. package/dist/generated/interface/schemas/ide/serializer.d.ts +106 -0
  64. package/dist/generated/interface/schemas/ide/serializer.js +3 -0
  65. package/dist/generated/interface/schemas/ide/unconstrained.d.ts +50 -29
  66. package/dist/generated/interface/schemas/ide/unmarshall.d.ts +68 -0
  67. package/dist/generated/interface/schemas/ide/unmarshall.js +3 -0
  68. package/dist/generated/interface/schemas/parse_result/marshall.d.ts +106 -0
  69. package/dist/generated/interface/schemas/parse_result/marshall.js +3 -0
  70. package/dist/generated/interface/schemas/parse_result/migrate_boilerplate.d.ts +46 -0
  71. package/dist/generated/interface/schemas/parse_result/migrate_boilerplate.js +3 -0
  72. package/dist/generated/interface/schemas/parse_result/serializer.d.ts +196 -0
  73. package/dist/generated/interface/schemas/parse_result/serializer.js +3 -0
  74. package/dist/generated/interface/schemas/parse_result/unconstrained.d.ts +20 -168
  75. package/dist/generated/interface/schemas/parse_result/unmarshall.d.ts +46 -0
  76. package/dist/generated/interface/schemas/parse_result/unmarshall.js +3 -0
  77. package/dist/generated/interface/schemas/target/marshall.d.ts +126 -0
  78. package/dist/generated/interface/schemas/target/marshall.js +3 -0
  79. package/dist/generated/interface/schemas/target/migrate_boilerplate.d.ts +46 -0
  80. package/dist/generated/interface/schemas/target/migrate_boilerplate.js +3 -0
  81. package/dist/generated/interface/schemas/target/serializer.d.ts +126 -0
  82. package/dist/generated/interface/schemas/target/serializer.js +3 -0
  83. package/dist/generated/interface/schemas/target/unconstrained.d.ts +1 -1
  84. package/dist/generated/interface/schemas/target/unmarshall.d.ts +46 -0
  85. package/dist/generated/interface/schemas/target/unmarshall.js +3 -0
  86. package/dist/generated/interface/schemas/target_json/unconstrained.d.ts +1 -1
  87. package/dist/generated/interface/schemas/token/marshall.d.ts +346 -0
  88. package/dist/generated/interface/schemas/token/marshall.js +3 -0
  89. package/dist/generated/interface/schemas/token/migrate_boilerplate.d.ts +222 -0
  90. package/dist/generated/interface/schemas/token/migrate_boilerplate.js +3 -0
  91. package/dist/generated/interface/schemas/token/unconstrained.d.ts +326 -0
  92. package/dist/generated/interface/schemas/token/unconstrained.js +3 -0
  93. package/dist/generated/interface/schemas/token/unmarshall.d.ts +222 -0
  94. package/dist/generated/interface/schemas/token/unmarshall.js +3 -0
  95. package/dist/index.js +8 -18
  96. package/dist/parse/ast.d.ts +10 -0
  97. package/dist/parse/ast.js +227 -0
  98. package/dist/parse/astn_parse_generic.d.ts +8 -0
  99. package/dist/parse/astn_parse_generic.js +65 -0
  100. package/dist/parse/parse.d.ts +3 -10
  101. package/dist/parse/parse.js +19 -226
  102. package/dist/parse/parse_generic.d.ts +7 -42
  103. package/dist/parse/parse_generic.js +14 -605
  104. package/dist/parse/string_iterator.d.ts +47 -0
  105. package/dist/parse/string_iterator.js +139 -0
  106. package/dist/parse/token.d.ts +9 -0
  107. package/dist/parse/token.js +506 -0
  108. package/dist/parse/tokenize.d.ts +8 -0
  109. package/dist/parse/tokenize.js +483 -0
  110. package/dist/serializers/json.js +8 -18
  111. package/dist/serializers/parse_result.js +8 -18
  112. package/dist/transformations/ast/ide.d.ts +3 -2
  113. package/dist/transformations/ast/ide.js +8 -18
  114. package/dist/transformations/ast/json_target.d.ts +1 -1
  115. package/dist/transformations/ast/json_target.js +8 -18
  116. package/dist/transformations/target/fountain_pen_block.js +10 -20
  117. package/dist/transformations/target_json/fountain_pen_block.js +8 -18
  118. package/package.json +5 -7
@@ -0,0 +1,46 @@
1
+ import * as _i_in from "./unconstrained";
2
+ import * as _i_out from "./unconstrained";
3
+ export type _T_Document = ($$_: _i_in._T_Document, $$_p: null) => _i_out._T_Document;
4
+ export type _T_Value = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Value;
5
+ export type Document = _T_Document;
6
+ export type Value = _T_Value;
7
+ export declare namespace _T_Document {
8
+ namespace CONTEXT {
9
+ }
10
+ type CONTEXT = _i_in._T_Document;
11
+ namespace PARAMS {
12
+ }
13
+ namespace RESULT {
14
+ }
15
+ type RESULT = _i_out._T_Document;
16
+ }
17
+ export declare namespace _T_Value {
18
+ namespace CONTEXT {
19
+ }
20
+ type CONTEXT = _i_in._T_Value;
21
+ namespace PARAMS {
22
+ }
23
+ namespace RESULT {
24
+ }
25
+ type RESULT = _i_out._T_Value;
26
+ }
27
+ export declare namespace Document {
28
+ namespace CONTEXT {
29
+ }
30
+ type CONTEXT = _i_in._T_Document;
31
+ namespace PARAMS {
32
+ }
33
+ namespace RESULT {
34
+ }
35
+ type RESULT = _i_out._T_Document;
36
+ }
37
+ export declare namespace Value {
38
+ namespace CONTEXT {
39
+ }
40
+ type CONTEXT = _i_in._T_Value;
41
+ namespace PARAMS {
42
+ }
43
+ namespace RESULT {
44
+ }
45
+ type RESULT = _i_out._T_Value;
46
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWlncmF0ZV9ib2lsZXJwbGF0ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvdGFyZ2V0L21pZ3JhdGVfYm9pbGVycGxhdGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -0,0 +1,126 @@
1
+ import * as _i_in from "./unconstrained";
2
+ import * as _i_out from "../../core/astn_target";
3
+ export type _T_Value_Serializers = {
4
+ readonly 'boolean': ($$_: boolean, $$_p: null) => string;
5
+ readonly 'custom numbers': {
6
+ readonly 'Position': ($$_: number, $$_p: null) => string;
7
+ };
8
+ readonly 'default number': ($$_: number, $$_p: null) => string;
9
+ };
10
+ export type _T_s_Document = ($$_: _i_in._T_Document, $$_p: {
11
+ readonly 'value serializers': _T_Value_Serializers;
12
+ }) => _i_out._T_Value;
13
+ export type _T_s_Value = ($$_: _i_in._T_Value, $$_p: {
14
+ readonly 'value serializers': _T_Value_Serializers;
15
+ }) => _i_out._T_Value;
16
+ export type Value_Serializers = _T_Value_Serializers;
17
+ export type s_Document = _T_s_Document;
18
+ export type s_Value = _T_s_Value;
19
+ export declare namespace _T_Value_Serializers {
20
+ namespace _boolean {
21
+ type CONTEXT = boolean;
22
+ namespace PARAMS {
23
+ }
24
+ type RESULT = string;
25
+ }
26
+ type _boolean = ($$_: boolean, $$_p: null) => string;
27
+ namespace custom_numbers {
28
+ namespace Position {
29
+ type CONTEXT = number;
30
+ namespace PARAMS {
31
+ }
32
+ type RESULT = string;
33
+ }
34
+ type Position = ($$_: number, $$_p: null) => string;
35
+ }
36
+ type custom_numbers = {
37
+ readonly 'Position': ($$_: number, $$_p: null) => string;
38
+ };
39
+ namespace default_number {
40
+ type CONTEXT = number;
41
+ namespace PARAMS {
42
+ }
43
+ type RESULT = string;
44
+ }
45
+ type default_number = ($$_: number, $$_p: null) => string;
46
+ }
47
+ export declare namespace _T_s_Document {
48
+ namespace CONTEXT {
49
+ }
50
+ type CONTEXT = _i_in._T_Document;
51
+ namespace PARAMS {
52
+ namespace value_serializers {
53
+ }
54
+ type value_serializers = _T_Value_Serializers;
55
+ }
56
+ namespace RESULT {
57
+ }
58
+ type RESULT = _i_out._T_Value;
59
+ }
60
+ export declare namespace _T_s_Value {
61
+ namespace CONTEXT {
62
+ }
63
+ type CONTEXT = _i_in._T_Value;
64
+ namespace PARAMS {
65
+ namespace value_serializers {
66
+ }
67
+ type value_serializers = _T_Value_Serializers;
68
+ }
69
+ namespace RESULT {
70
+ }
71
+ type RESULT = _i_out._T_Value;
72
+ }
73
+ export declare namespace Value_Serializers {
74
+ namespace _boolean {
75
+ type CONTEXT = boolean;
76
+ namespace PARAMS {
77
+ }
78
+ type RESULT = string;
79
+ }
80
+ type _boolean = ($$_: boolean, $$_p: null) => string;
81
+ namespace custom_numbers {
82
+ namespace Position {
83
+ type CONTEXT = number;
84
+ namespace PARAMS {
85
+ }
86
+ type RESULT = string;
87
+ }
88
+ type Position = ($$_: number, $$_p: null) => string;
89
+ }
90
+ type custom_numbers = {
91
+ readonly 'Position': ($$_: number, $$_p: null) => string;
92
+ };
93
+ namespace default_number {
94
+ type CONTEXT = number;
95
+ namespace PARAMS {
96
+ }
97
+ type RESULT = string;
98
+ }
99
+ type default_number = ($$_: number, $$_p: null) => string;
100
+ }
101
+ export declare namespace s_Document {
102
+ namespace CONTEXT {
103
+ }
104
+ type CONTEXT = _i_in._T_Document;
105
+ namespace PARAMS {
106
+ namespace value_serializers {
107
+ }
108
+ type value_serializers = _T_Value_Serializers;
109
+ }
110
+ namespace RESULT {
111
+ }
112
+ type RESULT = _i_out._T_Value;
113
+ }
114
+ export declare namespace s_Value {
115
+ namespace CONTEXT {
116
+ }
117
+ type CONTEXT = _i_in._T_Value;
118
+ namespace PARAMS {
119
+ namespace value_serializers {
120
+ }
121
+ type value_serializers = _T_Value_Serializers;
122
+ }
123
+ namespace RESULT {
124
+ }
125
+ type RESULT = _i_out._T_Value;
126
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VyaWFsaXplci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvdGFyZ2V0L3NlcmlhbGl6ZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -1,4 +1,4 @@
1
- import * as _i_core from "../../core/resolved";
1
+ import * as _i_core from "../../core/unconstrained";
2
2
  export type _T_Document = _T_Value;
3
3
  export type _T_Value = _i_core._T_State_Group<null, readonly ['concise group', _i_core._T_List<null, _T_Value>] | readonly ['dictionary', _i_core._T_Dictionary<null, _T_Value>] | readonly ['list', _i_core._T_List<null, _T_Value>] | readonly ['nothing', null] | readonly [
4
4
  'optional',
@@ -0,0 +1,46 @@
1
+ import * as _i_in from "../../core/astn_source";
2
+ import * as _i_out from "./unconstrained";
3
+ export type _T_Document = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Document;
4
+ export type _T_Value = ($$_: _i_in._T_Value, $$_p: null) => _i_out._T_Value;
5
+ export type Document = _T_Document;
6
+ export type Value = _T_Value;
7
+ export declare namespace _T_Document {
8
+ namespace CONTEXT {
9
+ }
10
+ type CONTEXT = _i_in._T_Value;
11
+ namespace PARAMS {
12
+ }
13
+ namespace RESULT {
14
+ }
15
+ type RESULT = _i_out._T_Document;
16
+ }
17
+ export declare namespace _T_Value {
18
+ namespace CONTEXT {
19
+ }
20
+ type CONTEXT = _i_in._T_Value;
21
+ namespace PARAMS {
22
+ }
23
+ namespace RESULT {
24
+ }
25
+ type RESULT = _i_out._T_Value;
26
+ }
27
+ export declare namespace Document {
28
+ namespace CONTEXT {
29
+ }
30
+ type CONTEXT = _i_in._T_Value;
31
+ namespace PARAMS {
32
+ }
33
+ namespace RESULT {
34
+ }
35
+ type RESULT = _i_out._T_Document;
36
+ }
37
+ export declare namespace Value {
38
+ namespace CONTEXT {
39
+ }
40
+ type CONTEXT = _i_in._T_Value;
41
+ namespace PARAMS {
42
+ }
43
+ namespace RESULT {
44
+ }
45
+ type RESULT = _i_out._T_Value;
46
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5tYXJzaGFsbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9nZW5lcmF0ZWQvaW50ZXJmYWNlL3NjaGVtYXMvdGFyZ2V0L3VubWFyc2hhbGwudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9
@@ -1,4 +1,4 @@
1
- import * as _i_core from "../../core/resolved";
1
+ import * as _i_core from "../../core/unconstrained";
2
2
  export type _T_Document = _T_Value;
3
3
  export type _T_Value = _i_core._T_State_Group<null, readonly ['array', _i_core._T_List<null, _T_Value>] | readonly ['boolean', boolean] | readonly ['null', null] | readonly [
4
4
  'number',
@@ -0,0 +1,346 @@
1
+ import * as _i_in from "./unconstrained";
2
+ import * as _i_out from "../../core/astn_target";
3
+ export type _T_Value_Serializers = {
4
+ readonly 'boolean': ($$_: boolean, $$_p: null) => string;
5
+ readonly 'custom numbers': null;
6
+ readonly 'default number': ($$_: number, $$_p: null) => string;
7
+ };
8
+ export type _T_s_Annotated_Token = ($$_: _i_in._T_Annotated_Token, $$_p: {
9
+ readonly 'value serializers': _T_Value_Serializers;
10
+ }) => _i_out._T_Value;
11
+ export type _T_s_Delimited_String = ($$_: _i_in._T_Delimited_String, $$_p: {
12
+ readonly 'value serializers': _T_Value_Serializers;
13
+ }) => _i_out._T_Value;
14
+ export type _T_s_Location = ($$_: _i_in._T_Location, $$_p: {
15
+ readonly 'value serializers': _T_Value_Serializers;
16
+ }) => _i_out._T_Value;
17
+ export type _T_s_Range = ($$_: _i_in._T_Range, $$_p: {
18
+ readonly 'value serializers': _T_Value_Serializers;
19
+ }) => _i_out._T_Value;
20
+ export type _T_s_Relative_Location = ($$_: _i_in._T_Relative_Location, $$_p: {
21
+ readonly 'value serializers': _T_Value_Serializers;
22
+ }) => _i_out._T_Value;
23
+ export type _T_s_String_Type = ($$_: _i_in._T_String_Type, $$_p: {
24
+ readonly 'value serializers': _T_Value_Serializers;
25
+ }) => _i_out._T_Value;
26
+ export type _T_s_Token_Type = ($$_: _i_in._T_Token_Type, $$_p: {
27
+ readonly 'value serializers': _T_Value_Serializers;
28
+ }) => _i_out._T_Value;
29
+ export type _T_s_Tokenizer_Result = ($$_: _i_in._T_Tokenizer_Result, $$_p: {
30
+ readonly 'value serializers': _T_Value_Serializers;
31
+ }) => _i_out._T_Value;
32
+ export type _T_s_Trivia = ($$_: _i_in._T_Trivia, $$_p: {
33
+ readonly 'value serializers': _T_Value_Serializers;
34
+ }) => _i_out._T_Value;
35
+ export type _T_s_Whitespace = ($$_: _i_in._T_Whitespace, $$_p: {
36
+ readonly 'value serializers': _T_Value_Serializers;
37
+ }) => _i_out._T_Value;
38
+ export type Value_Serializers = _T_Value_Serializers;
39
+ export type s_Annotated_Token = _T_s_Annotated_Token;
40
+ export type s_Delimited_String = _T_s_Delimited_String;
41
+ export type s_Location = _T_s_Location;
42
+ export type s_Range = _T_s_Range;
43
+ export type s_Relative_Location = _T_s_Relative_Location;
44
+ export type s_String_Type = _T_s_String_Type;
45
+ export type s_Token_Type = _T_s_Token_Type;
46
+ export type s_Tokenizer_Result = _T_s_Tokenizer_Result;
47
+ export type s_Trivia = _T_s_Trivia;
48
+ export type s_Whitespace = _T_s_Whitespace;
49
+ export declare namespace _T_Value_Serializers {
50
+ namespace _boolean {
51
+ type CONTEXT = boolean;
52
+ namespace PARAMS {
53
+ }
54
+ type RESULT = string;
55
+ }
56
+ type _boolean = ($$_: boolean, $$_p: null) => string;
57
+ namespace custom_numbers {
58
+ }
59
+ type custom_numbers = null;
60
+ namespace default_number {
61
+ type CONTEXT = number;
62
+ namespace PARAMS {
63
+ }
64
+ type RESULT = string;
65
+ }
66
+ type default_number = ($$_: number, $$_p: null) => string;
67
+ }
68
+ export declare namespace _T_s_Annotated_Token {
69
+ namespace CONTEXT {
70
+ }
71
+ type CONTEXT = _i_in._T_Annotated_Token;
72
+ namespace PARAMS {
73
+ namespace value_serializers {
74
+ }
75
+ type value_serializers = _T_Value_Serializers;
76
+ }
77
+ namespace RESULT {
78
+ }
79
+ type RESULT = _i_out._T_Value;
80
+ }
81
+ export declare namespace _T_s_Delimited_String {
82
+ namespace CONTEXT {
83
+ }
84
+ type CONTEXT = _i_in._T_Delimited_String;
85
+ namespace PARAMS {
86
+ namespace value_serializers {
87
+ }
88
+ type value_serializers = _T_Value_Serializers;
89
+ }
90
+ namespace RESULT {
91
+ }
92
+ type RESULT = _i_out._T_Value;
93
+ }
94
+ export declare namespace _T_s_Location {
95
+ namespace CONTEXT {
96
+ }
97
+ type CONTEXT = _i_in._T_Location;
98
+ namespace PARAMS {
99
+ namespace value_serializers {
100
+ }
101
+ type value_serializers = _T_Value_Serializers;
102
+ }
103
+ namespace RESULT {
104
+ }
105
+ type RESULT = _i_out._T_Value;
106
+ }
107
+ export declare namespace _T_s_Range {
108
+ namespace CONTEXT {
109
+ }
110
+ type CONTEXT = _i_in._T_Range;
111
+ namespace PARAMS {
112
+ namespace value_serializers {
113
+ }
114
+ type value_serializers = _T_Value_Serializers;
115
+ }
116
+ namespace RESULT {
117
+ }
118
+ type RESULT = _i_out._T_Value;
119
+ }
120
+ export declare namespace _T_s_Relative_Location {
121
+ namespace CONTEXT {
122
+ }
123
+ type CONTEXT = _i_in._T_Relative_Location;
124
+ namespace PARAMS {
125
+ namespace value_serializers {
126
+ }
127
+ type value_serializers = _T_Value_Serializers;
128
+ }
129
+ namespace RESULT {
130
+ }
131
+ type RESULT = _i_out._T_Value;
132
+ }
133
+ export declare namespace _T_s_String_Type {
134
+ namespace CONTEXT {
135
+ }
136
+ type CONTEXT = _i_in._T_String_Type;
137
+ namespace PARAMS {
138
+ namespace value_serializers {
139
+ }
140
+ type value_serializers = _T_Value_Serializers;
141
+ }
142
+ namespace RESULT {
143
+ }
144
+ type RESULT = _i_out._T_Value;
145
+ }
146
+ export declare namespace _T_s_Token_Type {
147
+ namespace CONTEXT {
148
+ }
149
+ type CONTEXT = _i_in._T_Token_Type;
150
+ namespace PARAMS {
151
+ namespace value_serializers {
152
+ }
153
+ type value_serializers = _T_Value_Serializers;
154
+ }
155
+ namespace RESULT {
156
+ }
157
+ type RESULT = _i_out._T_Value;
158
+ }
159
+ export declare namespace _T_s_Tokenizer_Result {
160
+ namespace CONTEXT {
161
+ }
162
+ type CONTEXT = _i_in._T_Tokenizer_Result;
163
+ namespace PARAMS {
164
+ namespace value_serializers {
165
+ }
166
+ type value_serializers = _T_Value_Serializers;
167
+ }
168
+ namespace RESULT {
169
+ }
170
+ type RESULT = _i_out._T_Value;
171
+ }
172
+ export declare namespace _T_s_Trivia {
173
+ namespace CONTEXT {
174
+ }
175
+ type CONTEXT = _i_in._T_Trivia;
176
+ namespace PARAMS {
177
+ namespace value_serializers {
178
+ }
179
+ type value_serializers = _T_Value_Serializers;
180
+ }
181
+ namespace RESULT {
182
+ }
183
+ type RESULT = _i_out._T_Value;
184
+ }
185
+ export declare namespace _T_s_Whitespace {
186
+ namespace CONTEXT {
187
+ }
188
+ type CONTEXT = _i_in._T_Whitespace;
189
+ namespace PARAMS {
190
+ namespace value_serializers {
191
+ }
192
+ type value_serializers = _T_Value_Serializers;
193
+ }
194
+ namespace RESULT {
195
+ }
196
+ type RESULT = _i_out._T_Value;
197
+ }
198
+ export declare namespace Value_Serializers {
199
+ namespace _boolean {
200
+ type CONTEXT = boolean;
201
+ namespace PARAMS {
202
+ }
203
+ type RESULT = string;
204
+ }
205
+ type _boolean = ($$_: boolean, $$_p: null) => string;
206
+ namespace custom_numbers {
207
+ }
208
+ type custom_numbers = null;
209
+ namespace default_number {
210
+ type CONTEXT = number;
211
+ namespace PARAMS {
212
+ }
213
+ type RESULT = string;
214
+ }
215
+ type default_number = ($$_: number, $$_p: null) => string;
216
+ }
217
+ export declare namespace s_Annotated_Token {
218
+ namespace CONTEXT {
219
+ }
220
+ type CONTEXT = _i_in._T_Annotated_Token;
221
+ namespace PARAMS {
222
+ namespace value_serializers {
223
+ }
224
+ type value_serializers = _T_Value_Serializers;
225
+ }
226
+ namespace RESULT {
227
+ }
228
+ type RESULT = _i_out._T_Value;
229
+ }
230
+ export declare namespace s_Delimited_String {
231
+ namespace CONTEXT {
232
+ }
233
+ type CONTEXT = _i_in._T_Delimited_String;
234
+ namespace PARAMS {
235
+ namespace value_serializers {
236
+ }
237
+ type value_serializers = _T_Value_Serializers;
238
+ }
239
+ namespace RESULT {
240
+ }
241
+ type RESULT = _i_out._T_Value;
242
+ }
243
+ export declare namespace s_Location {
244
+ namespace CONTEXT {
245
+ }
246
+ type CONTEXT = _i_in._T_Location;
247
+ namespace PARAMS {
248
+ namespace value_serializers {
249
+ }
250
+ type value_serializers = _T_Value_Serializers;
251
+ }
252
+ namespace RESULT {
253
+ }
254
+ type RESULT = _i_out._T_Value;
255
+ }
256
+ export declare namespace s_Range {
257
+ namespace CONTEXT {
258
+ }
259
+ type CONTEXT = _i_in._T_Range;
260
+ namespace PARAMS {
261
+ namespace value_serializers {
262
+ }
263
+ type value_serializers = _T_Value_Serializers;
264
+ }
265
+ namespace RESULT {
266
+ }
267
+ type RESULT = _i_out._T_Value;
268
+ }
269
+ export declare namespace s_Relative_Location {
270
+ namespace CONTEXT {
271
+ }
272
+ type CONTEXT = _i_in._T_Relative_Location;
273
+ namespace PARAMS {
274
+ namespace value_serializers {
275
+ }
276
+ type value_serializers = _T_Value_Serializers;
277
+ }
278
+ namespace RESULT {
279
+ }
280
+ type RESULT = _i_out._T_Value;
281
+ }
282
+ export declare namespace s_String_Type {
283
+ namespace CONTEXT {
284
+ }
285
+ type CONTEXT = _i_in._T_String_Type;
286
+ namespace PARAMS {
287
+ namespace value_serializers {
288
+ }
289
+ type value_serializers = _T_Value_Serializers;
290
+ }
291
+ namespace RESULT {
292
+ }
293
+ type RESULT = _i_out._T_Value;
294
+ }
295
+ export declare namespace s_Token_Type {
296
+ namespace CONTEXT {
297
+ }
298
+ type CONTEXT = _i_in._T_Token_Type;
299
+ namespace PARAMS {
300
+ namespace value_serializers {
301
+ }
302
+ type value_serializers = _T_Value_Serializers;
303
+ }
304
+ namespace RESULT {
305
+ }
306
+ type RESULT = _i_out._T_Value;
307
+ }
308
+ export declare namespace s_Tokenizer_Result {
309
+ namespace CONTEXT {
310
+ }
311
+ type CONTEXT = _i_in._T_Tokenizer_Result;
312
+ namespace PARAMS {
313
+ namespace value_serializers {
314
+ }
315
+ type value_serializers = _T_Value_Serializers;
316
+ }
317
+ namespace RESULT {
318
+ }
319
+ type RESULT = _i_out._T_Value;
320
+ }
321
+ export declare namespace s_Trivia {
322
+ namespace CONTEXT {
323
+ }
324
+ type CONTEXT = _i_in._T_Trivia;
325
+ namespace PARAMS {
326
+ namespace value_serializers {
327
+ }
328
+ type value_serializers = _T_Value_Serializers;
329
+ }
330
+ namespace RESULT {
331
+ }
332
+ type RESULT = _i_out._T_Value;
333
+ }
334
+ export declare namespace s_Whitespace {
335
+ namespace CONTEXT {
336
+ }
337
+ type CONTEXT = _i_in._T_Whitespace;
338
+ namespace PARAMS {
339
+ namespace value_serializers {
340
+ }
341
+ type value_serializers = _T_Value_Serializers;
342
+ }
343
+ namespace RESULT {
344
+ }
345
+ type RESULT = _i_out._T_Value;
346
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFyc2hhbGwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvZ2VuZXJhdGVkL2ludGVyZmFjZS9zY2hlbWFzL3Rva2VuL21hcnNoYWxsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==