yapp 4.0.119 → 4.0.121
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.
- package/example.js +6969 -9844
- package/lib/div/gutter.js +49 -60
- package/lib/div/lineNumbers.js +44 -55
- package/lib/div/overlay.js +50 -61
- package/lib/div/syntax.js +44 -55
- package/lib/example/div/sizeable/left.js +32 -32
- package/lib/example/div/sizeable/middle.js +32 -32
- package/lib/example/div/sizeable/right.js +32 -32
- package/lib/example/div/sizeable/top.js +32 -32
- package/lib/example/input.js +6 -6
- package/lib/example/subHeading.js +6 -6
- package/lib/example/textarea/bnf.js +29 -29
- package/lib/example/textarea/lexicalEntries.js +29 -29
- package/lib/example/textarea/parseTree.js +29 -29
- package/lib/example/textarea/tokens.js +29 -29
- package/lib/example/textarea.js +6 -6
- package/lib/example/view/javascript.js +31 -31
- package/lib/example/view/json.js +31 -31
- package/lib/example/view/plainText.js +31 -31
- package/lib/example/view/xml.js +31 -31
- package/lib/example/view.js +64 -75
- package/lib/example/yapp.js +31 -31
- package/lib/example.js +6 -6
- package/lib/index.js +6 -6
- package/lib/lexer/javascript.js +41 -41
- package/lib/lexer/json.js +41 -41
- package/lib/lexer/plainText.js +41 -41
- package/lib/lexer/xml.js +41 -41
- package/lib/parser/javascript.js +33 -33
- package/lib/parser/json.js +31 -31
- package/lib/parser/plainText.js +31 -31
- package/lib/parser/xml.js +31 -31
- package/lib/plugin/javascript.js +46 -57
- package/lib/plugin/json.js +46 -57
- package/lib/plugin/plainText.js +46 -57
- package/lib/plugin/xml.js +46 -57
- package/lib/plugin.js +5 -5
- package/lib/prettyPrinter.js +53 -64
- package/lib/processor/javascript.js +35 -35
- package/lib/processor/json.js +27 -27
- package/lib/processor/plainText.js +27 -27
- package/lib/processor/xml.js +33 -33
- package/lib/processor.js +9 -9
- package/lib/renderYappStyles.js +6 -6
- package/lib/richTextarea.js +41 -41
- package/lib/style/syntax.js +6 -6
- package/lib/token/significant/argument.js +28 -28
- package/lib/token/significant/attribute.js +28 -28
- package/lib/token/significant/comment.js +28 -28
- package/lib/token/significant/error.js +28 -28
- package/lib/token/significant/jsx/attributeName.js +28 -28
- package/lib/token/significant/jsx/tagName.js +28 -28
- package/lib/token/significant/name.js +28 -28
- package/lib/token/significant/string.js +29 -29
- package/lib/token/significant/variable.js +28 -28
- package/lib/utilities/plugin.js +6 -6
- package/lib/yapp.js +49 -60
- package/package.json +6 -6
package/lib/plugin/json.js
CHANGED
|
@@ -8,45 +8,34 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return JSONPlugin;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
var _plugin = /*#__PURE__*/
|
|
12
|
-
var _json = /*#__PURE__*/
|
|
13
|
-
var _json1 = /*#__PURE__*/
|
|
14
|
-
var _json2 = /*#__PURE__*/
|
|
11
|
+
var _plugin = /*#__PURE__*/ _interop_require_default(require("../plugin"));
|
|
12
|
+
var _json = /*#__PURE__*/ _interop_require_default(require("../lexer/json"));
|
|
13
|
+
var _json1 = /*#__PURE__*/ _interop_require_default(require("../parser/json"));
|
|
14
|
+
var _json2 = /*#__PURE__*/ _interop_require_default(require("../processor/json"));
|
|
15
15
|
var _languages = require("../languages");
|
|
16
|
-
function
|
|
16
|
+
function _assert_this_initialized(self) {
|
|
17
17
|
if (self === void 0) {
|
|
18
18
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
19
19
|
}
|
|
20
20
|
return self;
|
|
21
21
|
}
|
|
22
|
-
function
|
|
22
|
+
function _class_call_check(instance, Constructor) {
|
|
23
23
|
if (!(instance instanceof Constructor)) {
|
|
24
24
|
throw new TypeError("Cannot call a class as a function");
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
|
-
function isNativeReflectConstruct() {
|
|
28
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
29
|
-
if (Reflect.construct.sham) return false;
|
|
30
|
-
if (typeof Proxy === "function") return true;
|
|
31
|
-
try {
|
|
32
|
-
Date.prototype.toString.call(Reflect.construct(Date, [], function() {}));
|
|
33
|
-
return true;
|
|
34
|
-
} catch (e) {
|
|
35
|
-
return false;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
27
|
function _construct(Parent, args, Class) {
|
|
39
|
-
if (
|
|
28
|
+
if (_is_native_reflect_construct()) {
|
|
40
29
|
_construct = Reflect.construct;
|
|
41
30
|
} else {
|
|
42
|
-
_construct = function
|
|
31
|
+
_construct = function construct(Parent, args, Class) {
|
|
43
32
|
var a = [
|
|
44
33
|
null
|
|
45
34
|
];
|
|
46
35
|
a.push.apply(a, args);
|
|
47
36
|
var Constructor = Function.bind.apply(Parent, a);
|
|
48
37
|
var instance = new Constructor();
|
|
49
|
-
if (Class)
|
|
38
|
+
if (Class) _set_prototype_of(instance, Class.prototype);
|
|
50
39
|
return instance;
|
|
51
40
|
};
|
|
52
41
|
}
|
|
@@ -61,12 +50,12 @@ function _defineProperties(target, props) {
|
|
|
61
50
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
62
51
|
}
|
|
63
52
|
}
|
|
64
|
-
function
|
|
53
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
65
54
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
66
55
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
67
56
|
return Constructor;
|
|
68
57
|
}
|
|
69
|
-
function
|
|
58
|
+
function _define_property(obj, key, value) {
|
|
70
59
|
if (key in obj) {
|
|
71
60
|
Object.defineProperty(obj, key, {
|
|
72
61
|
value: value,
|
|
@@ -79,11 +68,11 @@ function _defineProperty(obj, key, value) {
|
|
|
79
68
|
}
|
|
80
69
|
return obj;
|
|
81
70
|
}
|
|
82
|
-
function
|
|
83
|
-
|
|
71
|
+
function _get_prototype_of(o) {
|
|
72
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
84
73
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
85
74
|
};
|
|
86
|
-
return
|
|
75
|
+
return _get_prototype_of(o);
|
|
87
76
|
}
|
|
88
77
|
function _inherits(subClass, superClass) {
|
|
89
78
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -96,37 +85,37 @@ function _inherits(subClass, superClass) {
|
|
|
96
85
|
configurable: true
|
|
97
86
|
}
|
|
98
87
|
});
|
|
99
|
-
if (superClass)
|
|
88
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
100
89
|
}
|
|
101
|
-
function
|
|
90
|
+
function _interop_require_default(obj) {
|
|
102
91
|
return obj && obj.__esModule ? obj : {
|
|
103
92
|
default: obj
|
|
104
93
|
};
|
|
105
94
|
}
|
|
106
|
-
function
|
|
95
|
+
function _is_native_function(fn) {
|
|
107
96
|
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
108
97
|
}
|
|
109
|
-
function
|
|
110
|
-
if (call && (
|
|
98
|
+
function _possible_constructor_return(self, call) {
|
|
99
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
111
100
|
return call;
|
|
112
101
|
}
|
|
113
|
-
return
|
|
102
|
+
return _assert_this_initialized(self);
|
|
114
103
|
}
|
|
115
|
-
function
|
|
116
|
-
|
|
104
|
+
function _set_prototype_of(o, p) {
|
|
105
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
117
106
|
o.__proto__ = p;
|
|
118
107
|
return o;
|
|
119
108
|
};
|
|
120
|
-
return
|
|
109
|
+
return _set_prototype_of(o, p);
|
|
121
110
|
}
|
|
122
|
-
|
|
111
|
+
function _type_of(obj) {
|
|
123
112
|
"@swc/helpers - typeof";
|
|
124
113
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
125
|
-
}
|
|
126
|
-
function
|
|
114
|
+
}
|
|
115
|
+
function _wrap_native_super(Class) {
|
|
127
116
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
128
|
-
|
|
129
|
-
if (Class === null || !
|
|
117
|
+
_wrap_native_super = function wrapNativeSuper(Class) {
|
|
118
|
+
if (Class === null || !_is_native_function(Class)) return Class;
|
|
130
119
|
if (typeof Class !== "function") {
|
|
131
120
|
throw new TypeError("Super expression must either be null or a function");
|
|
132
121
|
}
|
|
@@ -135,7 +124,7 @@ function _wrapNativeSuper(Class) {
|
|
|
135
124
|
_cache.set(Class, Wrapper);
|
|
136
125
|
}
|
|
137
126
|
function Wrapper() {
|
|
138
|
-
return _construct(Class, arguments,
|
|
127
|
+
return _construct(Class, arguments, _get_prototype_of(this).constructor);
|
|
139
128
|
}
|
|
140
129
|
Wrapper.prototype = Object.create(Class.prototype, {
|
|
141
130
|
constructor: {
|
|
@@ -145,11 +134,11 @@ function _wrapNativeSuper(Class) {
|
|
|
145
134
|
configurable: true
|
|
146
135
|
}
|
|
147
136
|
});
|
|
148
|
-
return
|
|
137
|
+
return _set_prototype_of(Wrapper, Class);
|
|
149
138
|
};
|
|
150
|
-
return
|
|
139
|
+
return _wrap_native_super(Class);
|
|
151
140
|
}
|
|
152
|
-
function
|
|
141
|
+
function _is_native_reflect_construct() {
|
|
153
142
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
154
143
|
if (Reflect.construct.sham) return false;
|
|
155
144
|
if (typeof Proxy === "function") return true;
|
|
@@ -160,27 +149,27 @@ function _isNativeReflectConstruct() {
|
|
|
160
149
|
return false;
|
|
161
150
|
}
|
|
162
151
|
}
|
|
163
|
-
function
|
|
164
|
-
var hasNativeReflectConstruct =
|
|
152
|
+
function _create_super(Derived) {
|
|
153
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
165
154
|
return function _createSuperInternal() {
|
|
166
|
-
var Super =
|
|
155
|
+
var Super = _get_prototype_of(Derived), result;
|
|
167
156
|
if (hasNativeReflectConstruct) {
|
|
168
|
-
var NewTarget =
|
|
157
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
169
158
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
170
159
|
} else {
|
|
171
160
|
result = Super.apply(this, arguments);
|
|
172
161
|
}
|
|
173
|
-
return
|
|
162
|
+
return _possible_constructor_return(this, result);
|
|
174
163
|
};
|
|
175
164
|
}
|
|
176
165
|
var JSONPlugin = /*#__PURE__*/ function(Plugin) {
|
|
177
166
|
_inherits(JSONPlugin, Plugin);
|
|
178
|
-
var _super =
|
|
167
|
+
var _super = _create_super(JSONPlugin);
|
|
179
168
|
function JSONPlugin() {
|
|
180
|
-
|
|
169
|
+
_class_call_check(this, JSONPlugin);
|
|
181
170
|
return _super.apply(this, arguments);
|
|
182
171
|
}
|
|
183
|
-
|
|
172
|
+
_create_class(JSONPlugin, null, [
|
|
184
173
|
{
|
|
185
174
|
key: "fromNothing",
|
|
186
175
|
value: function fromNothing() {
|
|
@@ -189,10 +178,10 @@ var JSONPlugin = /*#__PURE__*/ function(Plugin) {
|
|
|
189
178
|
}
|
|
190
179
|
]);
|
|
191
180
|
return JSONPlugin;
|
|
192
|
-
}(
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
181
|
+
}(_wrap_native_super(_plugin.default));
|
|
182
|
+
_define_property(JSONPlugin, "language", _languages.JSON_LANGUAGE);
|
|
183
|
+
_define_property(JSONPlugin, "Lexer", _json.default);
|
|
184
|
+
_define_property(JSONPlugin, "Parser", _json1.default);
|
|
185
|
+
_define_property(JSONPlugin, "Processor", _json2.default);
|
|
197
186
|
|
|
198
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9wbHVnaW4vanNvbi5qcyIsIjw8anN4LWNvbmZpZy1wcmFnbWEuanM+
|
|
187
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9wbHVnaW4vanNvbi5qcyIsIjw8anN4LWNvbmZpZy1wcmFnbWEuanM+PiJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IFBsdWdpbiBmcm9tIFwiLi4vcGx1Z2luXCI7XG5pbXBvcnQgSlNPTkxleGVyIGZyb20gXCIuLi9sZXhlci9qc29uXCI7XG5pbXBvcnQgSlNPTlBhcnNlciBmcm9tIFwiLi4vcGFyc2VyL2pzb25cIjtcbmltcG9ydCBKU09OUHJvY2Vzc29yIGZyb20gXCIuLi9wcm9jZXNzb3IvanNvblwiO1xuXG5pbXBvcnQgeyBKU09OX0xBTkdVQUdFIH0gZnJvbSBcIi4uL2xhbmd1YWdlc1wiXG5cbmV4cG9ydCBkZWZhdWx0IGNsYXNzIEpTT05QbHVnaW4gZXh0ZW5kcyBQbHVnaW4ge1xuICBzdGF0aWMgbGFuZ3VhZ2UgPSBKU09OX0xBTkdVQUdFO1xuXG4gIHN0YXRpYyBMZXhlciA9IEpTT05MZXhlcjtcblxuICBzdGF0aWMgUGFyc2VyID0gSlNPTlBhcnNlcjtcblxuICBzdGF0aWMgUHJvY2Vzc29yID0gSlNPTlByb2Nlc3NvcjtcblxuICBzdGF0aWMgZnJvbU5vdGhpbmcoKSB7IHJldHVybiBQbHVnaW4uZnJvbU5vdGhpbmcoSlNPTlBsdWdpbik7IH1cbn1cbiIsIlJlYWN0LmNyZWF0ZUVsZW1lbnQiXSwibmFtZXMiOlsiSlNPTlBsdWdpbiIsImZyb21Ob3RoaW5nIiwiUGx1Z2luIiwibGFuZ3VhZ2UiLCJKU09OX0xBTkdVQUdFIiwiTGV4ZXIiLCJKU09OTGV4ZXIiLCJQYXJzZXIiLCJKU09OUGFyc2VyIiwiUHJvY2Vzc29yIiwiSlNPTlByb2Nlc3NvciJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7ZUFTcUJBOzs7NkRBUEY7MkRBQ0c7NERBQ0M7NERBQ0c7eUJBRUk7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUVmLElBQUEsQUFBTUEsMkJBQU47Y0FBTUE7K0JBQUFBO2FBQUFBO2dDQUFBQTs7O2tCQUFBQTs7WUFTWkMsS0FBQUE7bUJBQVAsU0FBT0EsY0FBYztnQkFBRSxPQUFPQyxlQUFNLENBQUNELFdBQVcsQ0FUN0JEO1lBUzJDOzs7V0FUM0NBO3FCQUFtQkUsZUFBTTtBQUM1QyxpQkFEbUJGLFlBQ1pHLFlBQVdDLHdCQUFhO0FBRS9CLGlCQUhtQkosWUFHWkssU0FBUUMsYUFBUztBQUV4QixpQkFMbUJOLFlBS1pPLFVBQVNDLGNBQVU7QUFFMUIsaUJBUG1CUixZQU9aUyxhQUFZQyxjQUFhIn0=
|
package/lib/plugin/plainText.js
CHANGED
|
@@ -8,45 +8,34 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return PlainTextPlugin;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
var _plugin = /*#__PURE__*/
|
|
12
|
-
var _plainText = /*#__PURE__*/
|
|
13
|
-
var _plainText1 = /*#__PURE__*/
|
|
14
|
-
var _plainText2 = /*#__PURE__*/
|
|
11
|
+
var _plugin = /*#__PURE__*/ _interop_require_default(require("../plugin"));
|
|
12
|
+
var _plainText = /*#__PURE__*/ _interop_require_default(require("../lexer/plainText"));
|
|
13
|
+
var _plainText1 = /*#__PURE__*/ _interop_require_default(require("../parser/plainText"));
|
|
14
|
+
var _plainText2 = /*#__PURE__*/ _interop_require_default(require("../processor/plainText"));
|
|
15
15
|
var _languages = require("../languages");
|
|
16
|
-
function
|
|
16
|
+
function _assert_this_initialized(self) {
|
|
17
17
|
if (self === void 0) {
|
|
18
18
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
19
19
|
}
|
|
20
20
|
return self;
|
|
21
21
|
}
|
|
22
|
-
function
|
|
22
|
+
function _class_call_check(instance, Constructor) {
|
|
23
23
|
if (!(instance instanceof Constructor)) {
|
|
24
24
|
throw new TypeError("Cannot call a class as a function");
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
|
-
function isNativeReflectConstruct() {
|
|
28
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
29
|
-
if (Reflect.construct.sham) return false;
|
|
30
|
-
if (typeof Proxy === "function") return true;
|
|
31
|
-
try {
|
|
32
|
-
Date.prototype.toString.call(Reflect.construct(Date, [], function() {}));
|
|
33
|
-
return true;
|
|
34
|
-
} catch (e) {
|
|
35
|
-
return false;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
27
|
function _construct(Parent, args, Class) {
|
|
39
|
-
if (
|
|
28
|
+
if (_is_native_reflect_construct()) {
|
|
40
29
|
_construct = Reflect.construct;
|
|
41
30
|
} else {
|
|
42
|
-
_construct = function
|
|
31
|
+
_construct = function construct(Parent, args, Class) {
|
|
43
32
|
var a = [
|
|
44
33
|
null
|
|
45
34
|
];
|
|
46
35
|
a.push.apply(a, args);
|
|
47
36
|
var Constructor = Function.bind.apply(Parent, a);
|
|
48
37
|
var instance = new Constructor();
|
|
49
|
-
if (Class)
|
|
38
|
+
if (Class) _set_prototype_of(instance, Class.prototype);
|
|
50
39
|
return instance;
|
|
51
40
|
};
|
|
52
41
|
}
|
|
@@ -61,12 +50,12 @@ function _defineProperties(target, props) {
|
|
|
61
50
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
62
51
|
}
|
|
63
52
|
}
|
|
64
|
-
function
|
|
53
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
65
54
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
66
55
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
67
56
|
return Constructor;
|
|
68
57
|
}
|
|
69
|
-
function
|
|
58
|
+
function _define_property(obj, key, value) {
|
|
70
59
|
if (key in obj) {
|
|
71
60
|
Object.defineProperty(obj, key, {
|
|
72
61
|
value: value,
|
|
@@ -79,11 +68,11 @@ function _defineProperty(obj, key, value) {
|
|
|
79
68
|
}
|
|
80
69
|
return obj;
|
|
81
70
|
}
|
|
82
|
-
function
|
|
83
|
-
|
|
71
|
+
function _get_prototype_of(o) {
|
|
72
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
84
73
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
85
74
|
};
|
|
86
|
-
return
|
|
75
|
+
return _get_prototype_of(o);
|
|
87
76
|
}
|
|
88
77
|
function _inherits(subClass, superClass) {
|
|
89
78
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -96,37 +85,37 @@ function _inherits(subClass, superClass) {
|
|
|
96
85
|
configurable: true
|
|
97
86
|
}
|
|
98
87
|
});
|
|
99
|
-
if (superClass)
|
|
88
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
100
89
|
}
|
|
101
|
-
function
|
|
90
|
+
function _interop_require_default(obj) {
|
|
102
91
|
return obj && obj.__esModule ? obj : {
|
|
103
92
|
default: obj
|
|
104
93
|
};
|
|
105
94
|
}
|
|
106
|
-
function
|
|
95
|
+
function _is_native_function(fn) {
|
|
107
96
|
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
108
97
|
}
|
|
109
|
-
function
|
|
110
|
-
if (call && (
|
|
98
|
+
function _possible_constructor_return(self, call) {
|
|
99
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
111
100
|
return call;
|
|
112
101
|
}
|
|
113
|
-
return
|
|
102
|
+
return _assert_this_initialized(self);
|
|
114
103
|
}
|
|
115
|
-
function
|
|
116
|
-
|
|
104
|
+
function _set_prototype_of(o, p) {
|
|
105
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
117
106
|
o.__proto__ = p;
|
|
118
107
|
return o;
|
|
119
108
|
};
|
|
120
|
-
return
|
|
109
|
+
return _set_prototype_of(o, p);
|
|
121
110
|
}
|
|
122
|
-
|
|
111
|
+
function _type_of(obj) {
|
|
123
112
|
"@swc/helpers - typeof";
|
|
124
113
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
125
|
-
}
|
|
126
|
-
function
|
|
114
|
+
}
|
|
115
|
+
function _wrap_native_super(Class) {
|
|
127
116
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
128
|
-
|
|
129
|
-
if (Class === null || !
|
|
117
|
+
_wrap_native_super = function wrapNativeSuper(Class) {
|
|
118
|
+
if (Class === null || !_is_native_function(Class)) return Class;
|
|
130
119
|
if (typeof Class !== "function") {
|
|
131
120
|
throw new TypeError("Super expression must either be null or a function");
|
|
132
121
|
}
|
|
@@ -135,7 +124,7 @@ function _wrapNativeSuper(Class) {
|
|
|
135
124
|
_cache.set(Class, Wrapper);
|
|
136
125
|
}
|
|
137
126
|
function Wrapper() {
|
|
138
|
-
return _construct(Class, arguments,
|
|
127
|
+
return _construct(Class, arguments, _get_prototype_of(this).constructor);
|
|
139
128
|
}
|
|
140
129
|
Wrapper.prototype = Object.create(Class.prototype, {
|
|
141
130
|
constructor: {
|
|
@@ -145,11 +134,11 @@ function _wrapNativeSuper(Class) {
|
|
|
145
134
|
configurable: true
|
|
146
135
|
}
|
|
147
136
|
});
|
|
148
|
-
return
|
|
137
|
+
return _set_prototype_of(Wrapper, Class);
|
|
149
138
|
};
|
|
150
|
-
return
|
|
139
|
+
return _wrap_native_super(Class);
|
|
151
140
|
}
|
|
152
|
-
function
|
|
141
|
+
function _is_native_reflect_construct() {
|
|
153
142
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
154
143
|
if (Reflect.construct.sham) return false;
|
|
155
144
|
if (typeof Proxy === "function") return true;
|
|
@@ -160,27 +149,27 @@ function _isNativeReflectConstruct() {
|
|
|
160
149
|
return false;
|
|
161
150
|
}
|
|
162
151
|
}
|
|
163
|
-
function
|
|
164
|
-
var hasNativeReflectConstruct =
|
|
152
|
+
function _create_super(Derived) {
|
|
153
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
165
154
|
return function _createSuperInternal() {
|
|
166
|
-
var Super =
|
|
155
|
+
var Super = _get_prototype_of(Derived), result;
|
|
167
156
|
if (hasNativeReflectConstruct) {
|
|
168
|
-
var NewTarget =
|
|
157
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
169
158
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
170
159
|
} else {
|
|
171
160
|
result = Super.apply(this, arguments);
|
|
172
161
|
}
|
|
173
|
-
return
|
|
162
|
+
return _possible_constructor_return(this, result);
|
|
174
163
|
};
|
|
175
164
|
}
|
|
176
165
|
var PlainTextPlugin = /*#__PURE__*/ function(Plugin) {
|
|
177
166
|
_inherits(PlainTextPlugin, Plugin);
|
|
178
|
-
var _super =
|
|
167
|
+
var _super = _create_super(PlainTextPlugin);
|
|
179
168
|
function PlainTextPlugin() {
|
|
180
|
-
|
|
169
|
+
_class_call_check(this, PlainTextPlugin);
|
|
181
170
|
return _super.apply(this, arguments);
|
|
182
171
|
}
|
|
183
|
-
|
|
172
|
+
_create_class(PlainTextPlugin, null, [
|
|
184
173
|
{
|
|
185
174
|
key: "fromNothing",
|
|
186
175
|
value: function fromNothing() {
|
|
@@ -189,10 +178,10 @@ var PlainTextPlugin = /*#__PURE__*/ function(Plugin) {
|
|
|
189
178
|
}
|
|
190
179
|
]);
|
|
191
180
|
return PlainTextPlugin;
|
|
192
|
-
}(
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
181
|
+
}(_wrap_native_super(_plugin.default));
|
|
182
|
+
_define_property(PlainTextPlugin, "language", _languages.PLAIN_TEXT_LANGUAGE);
|
|
183
|
+
_define_property(PlainTextPlugin, "Lexer", _plainText.default);
|
|
184
|
+
_define_property(PlainTextPlugin, "Parser", _plainText1.default);
|
|
185
|
+
_define_property(PlainTextPlugin, "Processor", _plainText2.default);
|
|
197
186
|
|
|
198
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9wbHVnaW4vcGxhaW5UZXh0LmpzIiwiPDxqc3gtY29uZmlnLXByYWdtYS5qcz4+
|
|
187
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9wbHVnaW4vcGxhaW5UZXh0LmpzIiwiPDxqc3gtY29uZmlnLXByYWdtYS5qcz4+Il0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgUGx1Z2luIGZyb20gXCIuLi9wbHVnaW5cIjtcbmltcG9ydCBQbGFpblRleHRMZXhlciBmcm9tIFwiLi4vbGV4ZXIvcGxhaW5UZXh0XCI7XG5pbXBvcnQgUGxhaW5UZXh0UGFyc2VyIGZyb20gXCIuLi9wYXJzZXIvcGxhaW5UZXh0XCI7XG5pbXBvcnQgUGxhaW5UZXh0UHJvY2Vzc29yIGZyb20gXCIuLi9wcm9jZXNzb3IvcGxhaW5UZXh0XCI7XG5cbmltcG9ydCB7IFBMQUlOX1RFWFRfTEFOR1VBR0UgfSBmcm9tIFwiLi4vbGFuZ3VhZ2VzXCJcblxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgUGxhaW5UZXh0UGx1Z2luIGV4dGVuZHMgUGx1Z2luIHtcbiAgc3RhdGljIGxhbmd1YWdlID0gUExBSU5fVEVYVF9MQU5HVUFHRTtcblxuICBzdGF0aWMgTGV4ZXIgPSBQbGFpblRleHRMZXhlcjtcblxuICBzdGF0aWMgUGFyc2VyID0gUGxhaW5UZXh0UGFyc2VyO1xuXG4gIHN0YXRpYyBQcm9jZXNzb3IgPSBQbGFpblRleHRQcm9jZXNzb3I7XG5cbiAgc3RhdGljIGZyb21Ob3RoaW5nKCkgeyByZXR1cm4gUGx1Z2luLmZyb21Ob3RoaW5nKFBsYWluVGV4dFBsdWdpbik7IH1cbn1cbiIsIlJlYWN0LmNyZWF0ZUVsZW1lbnQiXSwibmFtZXMiOlsiUGxhaW5UZXh0UGx1Z2luIiwiZnJvbU5vdGhpbmciLCJQbHVnaW4iLCJsYW5ndWFnZSIsIlBMQUlOX1RFWFRfTEFOR1VBR0UiLCJMZXhlciIsIlBsYWluVGV4dExleGVyIiwiUGFyc2VyIiwiUGxhaW5UZXh0UGFyc2VyIiwiUHJvY2Vzc29yIiwiUGxhaW5UZXh0UHJvY2Vzc29yIl0sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7OztlQVNxQkE7Ozs2REFQRjtnRUFDUTtpRUFDQztpRUFDRzt5QkFFSzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRXJCLElBQUEsQUFBTUEsZ0NBQU47Y0FBTUE7K0JBQUFBO2FBQUFBO2dDQUFBQTs7O2tCQUFBQTs7WUFTWkMsS0FBQUE7bUJBQVAsU0FBT0EsY0FBYztnQkFBRSxPQUFPQyxlQUFNLENBQUNELFdBQVcsQ0FUN0JEO1lBU2dEOzs7V0FUaERBO3FCQUF3QkUsZUFBTTtBQUNqRCxpQkFEbUJGLGlCQUNaRyxZQUFXQyw4QkFBbUI7QUFFckMsaUJBSG1CSixpQkFHWkssU0FBUUMsa0JBQWM7QUFFN0IsaUJBTG1CTixpQkFLWk8sVUFBU0MsbUJBQWU7QUFFL0IsaUJBUG1CUixpQkFPWlMsYUFBWUMsbUJBQWtCIn0=
|
package/lib/plugin/xml.js
CHANGED
|
@@ -8,45 +8,34 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return XMLPlugin;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
var _plugin = /*#__PURE__*/
|
|
12
|
-
var _xml = /*#__PURE__*/
|
|
13
|
-
var _xml1 = /*#__PURE__*/
|
|
14
|
-
var _xml2 = /*#__PURE__*/
|
|
11
|
+
var _plugin = /*#__PURE__*/ _interop_require_default(require("../plugin"));
|
|
12
|
+
var _xml = /*#__PURE__*/ _interop_require_default(require("../lexer/xml"));
|
|
13
|
+
var _xml1 = /*#__PURE__*/ _interop_require_default(require("../parser/xml"));
|
|
14
|
+
var _xml2 = /*#__PURE__*/ _interop_require_default(require("../processor/xml"));
|
|
15
15
|
var _languages = require("../languages");
|
|
16
|
-
function
|
|
16
|
+
function _assert_this_initialized(self) {
|
|
17
17
|
if (self === void 0) {
|
|
18
18
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
19
19
|
}
|
|
20
20
|
return self;
|
|
21
21
|
}
|
|
22
|
-
function
|
|
22
|
+
function _class_call_check(instance, Constructor) {
|
|
23
23
|
if (!(instance instanceof Constructor)) {
|
|
24
24
|
throw new TypeError("Cannot call a class as a function");
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
|
-
function isNativeReflectConstruct() {
|
|
28
|
-
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
29
|
-
if (Reflect.construct.sham) return false;
|
|
30
|
-
if (typeof Proxy === "function") return true;
|
|
31
|
-
try {
|
|
32
|
-
Date.prototype.toString.call(Reflect.construct(Date, [], function() {}));
|
|
33
|
-
return true;
|
|
34
|
-
} catch (e) {
|
|
35
|
-
return false;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
27
|
function _construct(Parent, args, Class) {
|
|
39
|
-
if (
|
|
28
|
+
if (_is_native_reflect_construct()) {
|
|
40
29
|
_construct = Reflect.construct;
|
|
41
30
|
} else {
|
|
42
|
-
_construct = function
|
|
31
|
+
_construct = function construct(Parent, args, Class) {
|
|
43
32
|
var a = [
|
|
44
33
|
null
|
|
45
34
|
];
|
|
46
35
|
a.push.apply(a, args);
|
|
47
36
|
var Constructor = Function.bind.apply(Parent, a);
|
|
48
37
|
var instance = new Constructor();
|
|
49
|
-
if (Class)
|
|
38
|
+
if (Class) _set_prototype_of(instance, Class.prototype);
|
|
50
39
|
return instance;
|
|
51
40
|
};
|
|
52
41
|
}
|
|
@@ -61,12 +50,12 @@ function _defineProperties(target, props) {
|
|
|
61
50
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
62
51
|
}
|
|
63
52
|
}
|
|
64
|
-
function
|
|
53
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
65
54
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
66
55
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
67
56
|
return Constructor;
|
|
68
57
|
}
|
|
69
|
-
function
|
|
58
|
+
function _define_property(obj, key, value) {
|
|
70
59
|
if (key in obj) {
|
|
71
60
|
Object.defineProperty(obj, key, {
|
|
72
61
|
value: value,
|
|
@@ -79,11 +68,11 @@ function _defineProperty(obj, key, value) {
|
|
|
79
68
|
}
|
|
80
69
|
return obj;
|
|
81
70
|
}
|
|
82
|
-
function
|
|
83
|
-
|
|
71
|
+
function _get_prototype_of(o) {
|
|
72
|
+
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
84
73
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
85
74
|
};
|
|
86
|
-
return
|
|
75
|
+
return _get_prototype_of(o);
|
|
87
76
|
}
|
|
88
77
|
function _inherits(subClass, superClass) {
|
|
89
78
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -96,37 +85,37 @@ function _inherits(subClass, superClass) {
|
|
|
96
85
|
configurable: true
|
|
97
86
|
}
|
|
98
87
|
});
|
|
99
|
-
if (superClass)
|
|
88
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
100
89
|
}
|
|
101
|
-
function
|
|
90
|
+
function _interop_require_default(obj) {
|
|
102
91
|
return obj && obj.__esModule ? obj : {
|
|
103
92
|
default: obj
|
|
104
93
|
};
|
|
105
94
|
}
|
|
106
|
-
function
|
|
95
|
+
function _is_native_function(fn) {
|
|
107
96
|
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
108
97
|
}
|
|
109
|
-
function
|
|
110
|
-
if (call && (
|
|
98
|
+
function _possible_constructor_return(self, call) {
|
|
99
|
+
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
111
100
|
return call;
|
|
112
101
|
}
|
|
113
|
-
return
|
|
102
|
+
return _assert_this_initialized(self);
|
|
114
103
|
}
|
|
115
|
-
function
|
|
116
|
-
|
|
104
|
+
function _set_prototype_of(o, p) {
|
|
105
|
+
_set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
|
|
117
106
|
o.__proto__ = p;
|
|
118
107
|
return o;
|
|
119
108
|
};
|
|
120
|
-
return
|
|
109
|
+
return _set_prototype_of(o, p);
|
|
121
110
|
}
|
|
122
|
-
|
|
111
|
+
function _type_of(obj) {
|
|
123
112
|
"@swc/helpers - typeof";
|
|
124
113
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
125
|
-
}
|
|
126
|
-
function
|
|
114
|
+
}
|
|
115
|
+
function _wrap_native_super(Class) {
|
|
127
116
|
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
128
|
-
|
|
129
|
-
if (Class === null || !
|
|
117
|
+
_wrap_native_super = function wrapNativeSuper(Class) {
|
|
118
|
+
if (Class === null || !_is_native_function(Class)) return Class;
|
|
130
119
|
if (typeof Class !== "function") {
|
|
131
120
|
throw new TypeError("Super expression must either be null or a function");
|
|
132
121
|
}
|
|
@@ -135,7 +124,7 @@ function _wrapNativeSuper(Class) {
|
|
|
135
124
|
_cache.set(Class, Wrapper);
|
|
136
125
|
}
|
|
137
126
|
function Wrapper() {
|
|
138
|
-
return _construct(Class, arguments,
|
|
127
|
+
return _construct(Class, arguments, _get_prototype_of(this).constructor);
|
|
139
128
|
}
|
|
140
129
|
Wrapper.prototype = Object.create(Class.prototype, {
|
|
141
130
|
constructor: {
|
|
@@ -145,11 +134,11 @@ function _wrapNativeSuper(Class) {
|
|
|
145
134
|
configurable: true
|
|
146
135
|
}
|
|
147
136
|
});
|
|
148
|
-
return
|
|
137
|
+
return _set_prototype_of(Wrapper, Class);
|
|
149
138
|
};
|
|
150
|
-
return
|
|
139
|
+
return _wrap_native_super(Class);
|
|
151
140
|
}
|
|
152
|
-
function
|
|
141
|
+
function _is_native_reflect_construct() {
|
|
153
142
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
154
143
|
if (Reflect.construct.sham) return false;
|
|
155
144
|
if (typeof Proxy === "function") return true;
|
|
@@ -160,27 +149,27 @@ function _isNativeReflectConstruct() {
|
|
|
160
149
|
return false;
|
|
161
150
|
}
|
|
162
151
|
}
|
|
163
|
-
function
|
|
164
|
-
var hasNativeReflectConstruct =
|
|
152
|
+
function _create_super(Derived) {
|
|
153
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
165
154
|
return function _createSuperInternal() {
|
|
166
|
-
var Super =
|
|
155
|
+
var Super = _get_prototype_of(Derived), result;
|
|
167
156
|
if (hasNativeReflectConstruct) {
|
|
168
|
-
var NewTarget =
|
|
157
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
169
158
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
170
159
|
} else {
|
|
171
160
|
result = Super.apply(this, arguments);
|
|
172
161
|
}
|
|
173
|
-
return
|
|
162
|
+
return _possible_constructor_return(this, result);
|
|
174
163
|
};
|
|
175
164
|
}
|
|
176
165
|
var XMLPlugin = /*#__PURE__*/ function(Plugin) {
|
|
177
166
|
_inherits(XMLPlugin, Plugin);
|
|
178
|
-
var _super =
|
|
167
|
+
var _super = _create_super(XMLPlugin);
|
|
179
168
|
function XMLPlugin() {
|
|
180
|
-
|
|
169
|
+
_class_call_check(this, XMLPlugin);
|
|
181
170
|
return _super.apply(this, arguments);
|
|
182
171
|
}
|
|
183
|
-
|
|
172
|
+
_create_class(XMLPlugin, null, [
|
|
184
173
|
{
|
|
185
174
|
key: "fromNothing",
|
|
186
175
|
value: function fromNothing() {
|
|
@@ -189,10 +178,10 @@ var XMLPlugin = /*#__PURE__*/ function(Plugin) {
|
|
|
189
178
|
}
|
|
190
179
|
]);
|
|
191
180
|
return XMLPlugin;
|
|
192
|
-
}(
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
181
|
+
}(_wrap_native_super(_plugin.default));
|
|
182
|
+
_define_property(XMLPlugin, "language", _languages.XML_LANGUAGE);
|
|
183
|
+
_define_property(XMLPlugin, "Lexer", _xml.default);
|
|
184
|
+
_define_property(XMLPlugin, "Parser", _xml1.default);
|
|
185
|
+
_define_property(XMLPlugin, "Processor", _xml2.default);
|
|
197
186
|
|
|
198
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9wbHVnaW4veG1sLmpzIiwiPDxqc3gtY29uZmlnLXByYWdtYS5qcz4+
|
|
187
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9wbHVnaW4veG1sLmpzIiwiPDxqc3gtY29uZmlnLXByYWdtYS5qcz4+Il0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgUGx1Z2luIGZyb20gXCIuLi9wbHVnaW5cIjtcbmltcG9ydCBYTUxMZXhlciBmcm9tIFwiLi4vbGV4ZXIveG1sXCI7XG5pbXBvcnQgWE1MUGFyc2VyIGZyb20gXCIuLi9wYXJzZXIveG1sXCI7XG5pbXBvcnQgWE1MUHJvY2Vzc29yIGZyb20gXCIuLi9wcm9jZXNzb3IveG1sXCI7XG5cbmltcG9ydCB7IFhNTF9MQU5HVUFHRSB9IGZyb20gXCIuLi9sYW5ndWFnZXNcIlxuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBYTUxQbHVnaW4gZXh0ZW5kcyBQbHVnaW4ge1xuICBzdGF0aWMgbGFuZ3VhZ2UgPSBYTUxfTEFOR1VBR0U7XG5cbiAgc3RhdGljIExleGVyID0gWE1MTGV4ZXI7XG5cbiAgc3RhdGljIFBhcnNlciA9IFhNTFBhcnNlcjtcblxuICBzdGF0aWMgUHJvY2Vzc29yID0gWE1MUHJvY2Vzc29yO1xuXG4gIHN0YXRpYyBmcm9tTm90aGluZygpIHsgcmV0dXJuIFBsdWdpbi5mcm9tTm90aGluZyhYTUxQbHVnaW4pOyB9XG59XG4iLCJSZWFjdC5jcmVhdGVFbGVtZW50Il0sIm5hbWVzIjpbIlhNTFBsdWdpbiIsImZyb21Ob3RoaW5nIiwiUGx1Z2luIiwibGFuZ3VhZ2UiLCJYTUxfTEFOR1VBR0UiLCJMZXhlciIsIlhNTExleGVyIiwiUGFyc2VyIiwiWE1MUGFyc2VyIiwiUHJvY2Vzc29yIiwiWE1MUHJvY2Vzc29yIl0sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7OztlQVNxQkE7Ozs2REFQRjswREFDRTsyREFDQzsyREFDRzt5QkFFSTs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRWQsSUFBQSxBQUFNQSwwQkFBTjtjQUFNQTsrQkFBQUE7YUFBQUE7Z0NBQUFBOzs7a0JBQUFBOztZQVNaQyxLQUFBQTttQkFBUCxTQUFPQSxjQUFjO2dCQUFFLE9BQU9DLGVBQU0sQ0FBQ0QsV0FBVyxDQVQ3QkQ7WUFTMEM7OztXQVQxQ0E7cUJBQWtCRSxlQUFNO0FBQzNDLGlCQURtQkYsV0FDWkcsWUFBV0MsdUJBQVk7QUFFOUIsaUJBSG1CSixXQUdaSyxTQUFRQyxZQUFRO0FBRXZCLGlCQUxtQk4sV0FLWk8sVUFBU0MsYUFBUztBQUV6QixpQkFQbUJSLFdBT1pTLGFBQVlDLGFBQVkifQ==
|