typescript-to-lua 1.0.1 → 1.1.0
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/CHANGELOG.md +18 -0
- package/dist/CompilerOptions.d.ts +4 -3
- package/dist/LuaAST.js +4 -4
- package/dist/LuaLib.d.ts +1 -0
- package/dist/LuaLib.js +1 -0
- package/dist/LuaPrinter.d.ts +6 -2
- package/dist/LuaPrinter.js +25 -16
- package/dist/cli/diagnostics.js +2 -2
- package/dist/cli/report.js +1 -1
- package/dist/cli/tsconfig.js +4 -4
- package/dist/lualib/Await.lua +26 -10
- package/dist/lualib/Promise.lua +20 -6
- package/dist/lualib/SourceMapTraceBack.lua +18 -8
- package/dist/lualib/StringReplace.lua +8 -13
- package/dist/lualib/StringReplaceAll.lua +35 -0
- package/dist/lualib/lualib_bundle.lua +106 -35
- package/dist/transformation/builtins/array.js +29 -29
- package/dist/transformation/builtins/console.js +2 -2
- package/dist/transformation/builtins/function.js +9 -9
- package/dist/transformation/builtins/global.js +8 -8
- package/dist/transformation/builtins/index.js +33 -33
- package/dist/transformation/builtins/math.js +4 -4
- package/dist/transformation/builtins/number.js +7 -7
- package/dist/transformation/builtins/object.js +11 -11
- package/dist/transformation/builtins/promise.js +9 -9
- package/dist/transformation/builtins/string.js +32 -30
- package/dist/transformation/builtins/symbol.js +3 -3
- package/dist/transformation/context/context.js +5 -5
- package/dist/transformation/index.js +1 -1
- package/dist/transformation/utils/annotations.d.ts +1 -3
- package/dist/transformation/utils/annotations.js +0 -2
- package/dist/transformation/utils/assignment-validation.js +8 -7
- package/dist/transformation/utils/diagnostics.js +4 -4
- package/dist/transformation/utils/export.js +4 -4
- package/dist/transformation/utils/function-context.js +8 -8
- package/dist/transformation/utils/lua-ast.js +18 -19
- package/dist/transformation/utils/lualib.js +1 -1
- package/dist/transformation/utils/safe-names.js +5 -5
- package/dist/transformation/utils/scope.d.ts +6 -0
- package/dist/transformation/utils/scope.js +70 -40
- package/dist/transformation/utils/symbols.js +6 -6
- package/dist/transformation/utils/transform.js +3 -3
- package/dist/transformation/utils/typescript/nodes.d.ts +2 -0
- package/dist/transformation/utils/typescript/nodes.js +21 -1
- package/dist/transformation/visitors/access.js +16 -16
- package/dist/transformation/visitors/async-await.js +5 -4
- package/dist/transformation/visitors/binary-expression/assignments.js +29 -29
- package/dist/transformation/visitors/binary-expression/bit.js +4 -4
- package/dist/transformation/visitors/binary-expression/compound.js +18 -18
- package/dist/transformation/visitors/binary-expression/destructuring-assignments.js +17 -17
- package/dist/transformation/visitors/binary-expression/index.js +21 -21
- package/dist/transformation/visitors/block.js +6 -6
- package/dist/transformation/visitors/break-continue.js +2 -2
- package/dist/transformation/visitors/call.js +35 -35
- package/dist/transformation/visitors/class/decorators.js +3 -3
- package/dist/transformation/visitors/class/index.js +34 -34
- package/dist/transformation/visitors/class/members/accessors.js +6 -6
- package/dist/transformation/visitors/class/members/constructor.js +7 -7
- package/dist/transformation/visitors/class/members/fields.js +6 -6
- package/dist/transformation/visitors/class/members/method.js +6 -6
- package/dist/transformation/visitors/class/new.js +12 -12
- package/dist/transformation/visitors/class/setup.js +11 -11
- package/dist/transformation/visitors/class/utils.js +2 -2
- package/dist/transformation/visitors/conditional.js +6 -6
- package/dist/transformation/visitors/delete.js +4 -4
- package/dist/transformation/visitors/enum.js +8 -8
- package/dist/transformation/visitors/errors.js +30 -30
- package/dist/transformation/visitors/expression-statement.js +10 -6
- package/dist/transformation/visitors/function.js +26 -26
- package/dist/transformation/visitors/identifier.js +22 -22
- package/dist/transformation/visitors/index.js +2 -2
- package/dist/transformation/visitors/language-extensions/iterable.js +7 -7
- package/dist/transformation/visitors/language-extensions/multi.d.ts +1 -1
- package/dist/transformation/visitors/language-extensions/multi.js +3 -3
- package/dist/transformation/visitors/language-extensions/operators.js +6 -6
- package/dist/transformation/visitors/language-extensions/range.js +6 -6
- package/dist/transformation/visitors/language-extensions/table.js +5 -5
- package/dist/transformation/visitors/literal.d.ts +1 -2
- package/dist/transformation/visitors/literal.js +19 -42
- package/dist/transformation/visitors/loops/do-while.js +2 -2
- package/dist/transformation/visitors/loops/for-in.js +4 -4
- package/dist/transformation/visitors/loops/for-of.js +13 -13
- package/dist/transformation/visitors/loops/for.js +3 -3
- package/dist/transformation/visitors/loops/utils.js +9 -9
- package/dist/transformation/visitors/modules/export.js +13 -13
- package/dist/transformation/visitors/modules/import.js +10 -10
- package/dist/transformation/visitors/namespace.js +13 -13
- package/dist/transformation/visitors/return.d.ts +1 -0
- package/dist/transformation/visitors/return.js +40 -26
- package/dist/transformation/visitors/sourceFile.js +8 -8
- package/dist/transformation/visitors/spread.js +11 -11
- package/dist/transformation/visitors/switch.js +34 -11
- package/dist/transformation/visitors/template.js +5 -5
- package/dist/transformation/visitors/typeof.js +2 -2
- package/dist/transformation/visitors/typescript.js +1 -1
- package/dist/transformation/visitors/unary-expression.js +9 -9
- package/dist/transformation/visitors/variable-declaration.js +28 -28
- package/dist/transformation/visitors/void.d.ts +6 -0
- package/dist/transformation/visitors/void.js +23 -0
- package/dist/transpilation/bundle.d.ts +3 -0
- package/dist/transpilation/bundle.js +52 -10
- package/dist/transpilation/diagnostics.js +3 -3
- package/dist/transpilation/index.js +2 -2
- package/dist/transpilation/output-collector.js +2 -2
- package/dist/transpilation/plugins.js +1 -1
- package/dist/transpilation/resolve.js +19 -12
- package/dist/transpilation/transformers.js +41 -24
- package/dist/transpilation/transpile.js +6 -6
- package/dist/transpilation/transpiler.js +8 -8
- package/dist/transpilation/utils.js +3 -2
- package/dist/tstl.js +8 -8
- package/dist/utils.js +2 -2
- package/package.json +15 -12
- package/dist/transformation/visitors/jsx/jsx.d.ts +0 -9
- package/dist/transformation/visitors/jsx/jsx.js +0 -237
- package/dist/transformation/visitors/jsx/xhtml.d.ts +0 -3
- package/dist/transformation/visitors/jsx/xhtml.js +0 -260
|
@@ -1,237 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.jsxVisitors = exports.formatJSXStringValueLiteral = void 0;
|
|
4
|
-
const ts = require("typescript");
|
|
5
|
-
const lua = require("../../../LuaAST");
|
|
6
|
-
const literal_1 = require("../literal");
|
|
7
|
-
const xhtml_1 = require("./xhtml");
|
|
8
|
-
const annotations_1 = require("../../utils/annotations");
|
|
9
|
-
function findAnnotationByType(node, fileAnnotation) {
|
|
10
|
-
const annotation = annotations_1.getFileAnnotations(node.getSourceFile()).get(fileAnnotation);
|
|
11
|
-
return annotation === null || annotation === void 0 ? void 0 : annotation.args[0];
|
|
12
|
-
}
|
|
13
|
-
function getExpressionFromOption(option) {
|
|
14
|
-
const [first, second] = option.split(".");
|
|
15
|
-
return second === undefined
|
|
16
|
-
? lua.createIdentifier(first)
|
|
17
|
-
: lua.createTableIndexExpression(lua.createIdentifier(first), lua.createStringLiteral(second));
|
|
18
|
-
}
|
|
19
|
-
function getJsxFactory(node, context) {
|
|
20
|
-
var _a, _b;
|
|
21
|
-
const option = (_b = (_a = findAnnotationByType(node, annotations_1.AnnotationKind.Jsx)) !== null && _a !== void 0 ? _a : context.options.jsxFactory) !== null && _b !== void 0 ? _b : "React.createElement";
|
|
22
|
-
return getExpressionFromOption(option);
|
|
23
|
-
}
|
|
24
|
-
function getJsxFragmentName(node, context) {
|
|
25
|
-
var _a, _b;
|
|
26
|
-
const option = (_b = (_a = findAnnotationByType(node, annotations_1.AnnotationKind.JsxFrag)) !== null && _a !== void 0 ? _a : context.options.jsxFragmentFactory) !== null && _b !== void 0 ? _b : "React.Fragment";
|
|
27
|
-
return getExpressionFromOption(option);
|
|
28
|
-
}
|
|
29
|
-
/*
|
|
30
|
-
The following 3 functions for jsx text processing modified from sucrase (https://github.com/alangpierce/sucrase), which
|
|
31
|
-
is published with the MIT licence:
|
|
32
|
-
|
|
33
|
-
The MIT License (MIT)
|
|
34
|
-
|
|
35
|
-
Copyright (c) 2012-2018 various contributors (see AUTHORS)
|
|
36
|
-
|
|
37
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
38
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
39
|
-
in the Software without restriction, including without limitation the rights
|
|
40
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
41
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
42
|
-
furnished to do so, subject to the following conditions:
|
|
43
|
-
|
|
44
|
-
The above copyright notice and this permission notice shall be included in all
|
|
45
|
-
copies or substantial portions of the Software.
|
|
46
|
-
|
|
47
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
48
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
49
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
50
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
51
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
52
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
53
|
-
SOFTWARE.
|
|
54
|
-
*/
|
|
55
|
-
const HEX_NUMBER = /^[\da-fA-F]+$/;
|
|
56
|
-
const DECIMAL_NUMBER = /^\d+$/;
|
|
57
|
-
/**
|
|
58
|
-
* Turn the given jsxText string into a JS string literal. Leading and trailing
|
|
59
|
-
* whitespace on lines is removed, except immediately after the open-tag and
|
|
60
|
-
* before the close-tag. Empty lines are completely removed, and spaces are
|
|
61
|
-
* added between lines after that.
|
|
62
|
-
*
|
|
63
|
-
* We trim the start and end of each line and remove blank lines.
|
|
64
|
-
*/
|
|
65
|
-
function formatJSXTextLiteral(text) {
|
|
66
|
-
let result = "";
|
|
67
|
-
let whitespace = "";
|
|
68
|
-
let isInInitialLineWhitespace = false;
|
|
69
|
-
let seenNonWhitespace = false;
|
|
70
|
-
for (let i = 0; i < text.length; i++) {
|
|
71
|
-
const c = text[i];
|
|
72
|
-
if (c === " " || c === "\t" || c === "\r") {
|
|
73
|
-
if (!isInInitialLineWhitespace) {
|
|
74
|
-
whitespace += c;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
else if (c === "\n") {
|
|
78
|
-
whitespace = "";
|
|
79
|
-
isInInitialLineWhitespace = true;
|
|
80
|
-
}
|
|
81
|
-
else {
|
|
82
|
-
if (seenNonWhitespace && isInInitialLineWhitespace) {
|
|
83
|
-
result += " ";
|
|
84
|
-
}
|
|
85
|
-
result += whitespace;
|
|
86
|
-
whitespace = "";
|
|
87
|
-
if (c === "&") {
|
|
88
|
-
const { entity, newI } = processEntity(text, i + 1);
|
|
89
|
-
i = newI - 1;
|
|
90
|
-
result += entity;
|
|
91
|
-
}
|
|
92
|
-
else {
|
|
93
|
-
result += c;
|
|
94
|
-
}
|
|
95
|
-
seenNonWhitespace = true;
|
|
96
|
-
isInInitialLineWhitespace = false;
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
if (!isInInitialLineWhitespace) {
|
|
100
|
-
result += whitespace;
|
|
101
|
-
}
|
|
102
|
-
return result;
|
|
103
|
-
}
|
|
104
|
-
/**
|
|
105
|
-
* Format a string in the value position of a JSX prop.
|
|
106
|
-
*
|
|
107
|
-
* Use the same implementation as convertAttribute from
|
|
108
|
-
* babel-helper-builder-react-jsx.
|
|
109
|
-
*/
|
|
110
|
-
// changes from sucrase: no multi-line flattening of prop strings in typescript.
|
|
111
|
-
function formatJSXStringValueLiteral(text) {
|
|
112
|
-
let result = "";
|
|
113
|
-
for (let i = 0; i < text.length; i++) {
|
|
114
|
-
const c = text[i];
|
|
115
|
-
if (c === "&") {
|
|
116
|
-
const { entity, newI } = processEntity(text, i + 1);
|
|
117
|
-
result += entity;
|
|
118
|
-
i = newI - 1;
|
|
119
|
-
}
|
|
120
|
-
else {
|
|
121
|
-
result += c;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
return result;
|
|
125
|
-
}
|
|
126
|
-
exports.formatJSXStringValueLiteral = formatJSXStringValueLiteral;
|
|
127
|
-
/**
|
|
128
|
-
* Modified from jsxReadString in Babylon.
|
|
129
|
-
*/
|
|
130
|
-
function processEntity(text, indexAfterAmpersand) {
|
|
131
|
-
let str = "";
|
|
132
|
-
let count = 0;
|
|
133
|
-
let entity;
|
|
134
|
-
let i = indexAfterAmpersand;
|
|
135
|
-
while (i < text.length && count++ < 10) {
|
|
136
|
-
const ch = text[i];
|
|
137
|
-
i++;
|
|
138
|
-
if (ch === ";") {
|
|
139
|
-
if (str.startsWith("#")) {
|
|
140
|
-
if (str[1] === "x") {
|
|
141
|
-
str = str.substr(2);
|
|
142
|
-
if (HEX_NUMBER.test(str)) {
|
|
143
|
-
entity = String.fromCodePoint(Number.parseInt(str, 16));
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
else {
|
|
147
|
-
str = str.substr(1);
|
|
148
|
-
if (DECIMAL_NUMBER.test(str)) {
|
|
149
|
-
entity = String.fromCodePoint(Number.parseInt(str, 10));
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
else {
|
|
154
|
-
entity = xhtml_1.XHTMLEntities[str];
|
|
155
|
-
}
|
|
156
|
-
break;
|
|
157
|
-
}
|
|
158
|
-
str += ch;
|
|
159
|
-
}
|
|
160
|
-
if (!entity) {
|
|
161
|
-
return { entity: "&", newI: indexAfterAmpersand };
|
|
162
|
-
}
|
|
163
|
-
return { entity, newI: i };
|
|
164
|
-
}
|
|
165
|
-
// end functions copied from sucrase
|
|
166
|
-
function processJsxText(jsxText) {
|
|
167
|
-
const text = formatJSXTextLiteral(jsxText.text);
|
|
168
|
-
if (text === "")
|
|
169
|
-
return undefined;
|
|
170
|
-
return ts.factory.createStringLiteral(text);
|
|
171
|
-
}
|
|
172
|
-
const charCodes = {
|
|
173
|
-
a: 0x61,
|
|
174
|
-
z: 0x7a,
|
|
175
|
-
};
|
|
176
|
-
// how typescript does it
|
|
177
|
-
function isIntrinsicJsxName(escapedName) {
|
|
178
|
-
const name = escapedName;
|
|
179
|
-
const ch = name.charCodeAt(0);
|
|
180
|
-
return (ch >= charCodes.a && ch <= charCodes.z) || name.includes("-") || name.includes(":");
|
|
181
|
-
}
|
|
182
|
-
function transformTagName(name, context) {
|
|
183
|
-
if (ts.isIdentifier(name) && isIntrinsicJsxName(name.escapedText)) {
|
|
184
|
-
return lua.createStringLiteral(ts.idText(name), name);
|
|
185
|
-
}
|
|
186
|
-
else {
|
|
187
|
-
return context.transformExpression(name);
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
function transformJsxChildren(children, context) {
|
|
191
|
-
if (!children)
|
|
192
|
-
return undefined;
|
|
193
|
-
return children
|
|
194
|
-
.map(child => {
|
|
195
|
-
if (ts.isJsxText(child)) {
|
|
196
|
-
return processJsxText(child);
|
|
197
|
-
}
|
|
198
|
-
if (ts.isJsxExpression(child)) {
|
|
199
|
-
return child.expression;
|
|
200
|
-
}
|
|
201
|
-
return child;
|
|
202
|
-
})
|
|
203
|
-
.filter(child => child !== undefined)
|
|
204
|
-
.map(child => context.transformExpression(child));
|
|
205
|
-
}
|
|
206
|
-
function createJsxFactoryCall(tagName, props, tsChildren, tsOriginal, context) {
|
|
207
|
-
const transformedChildren = transformJsxChildren(tsChildren, context);
|
|
208
|
-
const jsxFactory = getJsxFactory(tsOriginal, context);
|
|
209
|
-
const args = [tagName];
|
|
210
|
-
if (props) {
|
|
211
|
-
args.push(props);
|
|
212
|
-
}
|
|
213
|
-
if (transformedChildren && transformedChildren.length > 0) {
|
|
214
|
-
if (!props) {
|
|
215
|
-
args.push(lua.createNilLiteral());
|
|
216
|
-
}
|
|
217
|
-
args.push(...transformedChildren);
|
|
218
|
-
}
|
|
219
|
-
return lua.createCallExpression(jsxFactory, args, tsOriginal);
|
|
220
|
-
}
|
|
221
|
-
function transformJsxOpeningLikeElement(node, children, context) {
|
|
222
|
-
const tagName = transformTagName(node.tagName, context);
|
|
223
|
-
const props = node.attributes.properties.length !== 0 ? literal_1.transformJsxAttributes(node.attributes, context) : undefined;
|
|
224
|
-
return createJsxFactoryCall(tagName, props, children, node, context);
|
|
225
|
-
}
|
|
226
|
-
const transformJsxElement = (node, context) => transformJsxOpeningLikeElement(node.openingElement, node.children, context);
|
|
227
|
-
const transformSelfClosingJsxElement = (node, context) => transformJsxOpeningLikeElement(node, undefined, context);
|
|
228
|
-
const transformJsxFragment = (node, context) => {
|
|
229
|
-
const tagName = getJsxFragmentName(node, context);
|
|
230
|
-
return createJsxFactoryCall(tagName, undefined, node.children, node, context);
|
|
231
|
-
};
|
|
232
|
-
exports.jsxVisitors = {
|
|
233
|
-
[ts.SyntaxKind.JsxElement]: transformJsxElement,
|
|
234
|
-
[ts.SyntaxKind.JsxSelfClosingElement]: transformSelfClosingJsxElement,
|
|
235
|
-
[ts.SyntaxKind.JsxFragment]: transformJsxFragment,
|
|
236
|
-
};
|
|
237
|
-
//# sourceMappingURL=jsx.js.map
|
|
@@ -1,260 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.XHTMLEntities = void 0;
|
|
4
|
-
/* eslint-disable @typescript-eslint/naming-convention */
|
|
5
|
-
exports.XHTMLEntities = {
|
|
6
|
-
quot: "\u0022",
|
|
7
|
-
amp: "&",
|
|
8
|
-
apos: "\u0027",
|
|
9
|
-
lt: "<",
|
|
10
|
-
gt: ">",
|
|
11
|
-
nbsp: "\u00A0",
|
|
12
|
-
iexcl: "\u00A1",
|
|
13
|
-
cent: "\u00A2",
|
|
14
|
-
pound: "\u00A3",
|
|
15
|
-
curren: "\u00A4",
|
|
16
|
-
yen: "\u00A5",
|
|
17
|
-
brvbar: "\u00A6",
|
|
18
|
-
sect: "\u00A7",
|
|
19
|
-
uml: "\u00A8",
|
|
20
|
-
copy: "\u00A9",
|
|
21
|
-
ordf: "\u00AA",
|
|
22
|
-
laquo: "\u00AB",
|
|
23
|
-
not: "\u00AC",
|
|
24
|
-
shy: "\u00AD",
|
|
25
|
-
reg: "\u00AE",
|
|
26
|
-
macr: "\u00AF",
|
|
27
|
-
deg: "\u00B0",
|
|
28
|
-
plusmn: "\u00B1",
|
|
29
|
-
sup2: "\u00B2",
|
|
30
|
-
sup3: "\u00B3",
|
|
31
|
-
acute: "\u00B4",
|
|
32
|
-
micro: "\u00B5",
|
|
33
|
-
para: "\u00B6",
|
|
34
|
-
middot: "\u00B7",
|
|
35
|
-
cedil: "\u00B8",
|
|
36
|
-
sup1: "\u00B9",
|
|
37
|
-
ordm: "\u00BA",
|
|
38
|
-
raquo: "\u00BB",
|
|
39
|
-
frac14: "\u00BC",
|
|
40
|
-
frac12: "\u00BD",
|
|
41
|
-
frac34: "\u00BE",
|
|
42
|
-
iquest: "\u00BF",
|
|
43
|
-
Agrave: "\u00C0",
|
|
44
|
-
Aacute: "\u00C1",
|
|
45
|
-
Acirc: "\u00C2",
|
|
46
|
-
Atilde: "\u00C3",
|
|
47
|
-
Auml: "\u00C4",
|
|
48
|
-
Aring: "\u00C5",
|
|
49
|
-
AElig: "\u00C6",
|
|
50
|
-
Ccedil: "\u00C7",
|
|
51
|
-
Egrave: "\u00C8",
|
|
52
|
-
Eacute: "\u00C9",
|
|
53
|
-
Ecirc: "\u00CA",
|
|
54
|
-
Euml: "\u00CB",
|
|
55
|
-
Igrave: "\u00CC",
|
|
56
|
-
Iacute: "\u00CD",
|
|
57
|
-
Icirc: "\u00CE",
|
|
58
|
-
Iuml: "\u00CF",
|
|
59
|
-
ETH: "\u00D0",
|
|
60
|
-
Ntilde: "\u00D1",
|
|
61
|
-
Ograve: "\u00D2",
|
|
62
|
-
Oacute: "\u00D3",
|
|
63
|
-
Ocirc: "\u00D4",
|
|
64
|
-
Otilde: "\u00D5",
|
|
65
|
-
Ouml: "\u00D6",
|
|
66
|
-
times: "\u00D7",
|
|
67
|
-
Oslash: "\u00D8",
|
|
68
|
-
Ugrave: "\u00D9",
|
|
69
|
-
Uacute: "\u00DA",
|
|
70
|
-
Ucirc: "\u00DB",
|
|
71
|
-
Uuml: "\u00DC",
|
|
72
|
-
Yacute: "\u00DD",
|
|
73
|
-
THORN: "\u00DE",
|
|
74
|
-
szlig: "\u00DF",
|
|
75
|
-
agrave: "\u00E0",
|
|
76
|
-
aacute: "\u00E1",
|
|
77
|
-
acirc: "\u00E2",
|
|
78
|
-
atilde: "\u00E3",
|
|
79
|
-
auml: "\u00E4",
|
|
80
|
-
aring: "\u00E5",
|
|
81
|
-
aelig: "\u00E6",
|
|
82
|
-
ccedil: "\u00E7",
|
|
83
|
-
egrave: "\u00E8",
|
|
84
|
-
eacute: "\u00E9",
|
|
85
|
-
ecirc: "\u00EA",
|
|
86
|
-
euml: "\u00EB",
|
|
87
|
-
igrave: "\u00EC",
|
|
88
|
-
iacute: "\u00ED",
|
|
89
|
-
icirc: "\u00EE",
|
|
90
|
-
iuml: "\u00EF",
|
|
91
|
-
eth: "\u00F0",
|
|
92
|
-
ntilde: "\u00F1",
|
|
93
|
-
ograve: "\u00F2",
|
|
94
|
-
oacute: "\u00F3",
|
|
95
|
-
ocirc: "\u00F4",
|
|
96
|
-
otilde: "\u00F5",
|
|
97
|
-
ouml: "\u00F6",
|
|
98
|
-
divide: "\u00F7",
|
|
99
|
-
oslash: "\u00F8",
|
|
100
|
-
ugrave: "\u00F9",
|
|
101
|
-
uacute: "\u00FA",
|
|
102
|
-
ucirc: "\u00FB",
|
|
103
|
-
uuml: "\u00FC",
|
|
104
|
-
yacute: "\u00FD",
|
|
105
|
-
thorn: "\u00FE",
|
|
106
|
-
yuml: "\u00FF",
|
|
107
|
-
OElig: "\u0152",
|
|
108
|
-
oelig: "\u0153",
|
|
109
|
-
Scaron: "\u0160",
|
|
110
|
-
scaron: "\u0161",
|
|
111
|
-
Yuml: "\u0178",
|
|
112
|
-
fnof: "\u0192",
|
|
113
|
-
circ: "\u02C6",
|
|
114
|
-
tilde: "\u02DC",
|
|
115
|
-
Alpha: "\u0391",
|
|
116
|
-
Beta: "\u0392",
|
|
117
|
-
Gamma: "\u0393",
|
|
118
|
-
Delta: "\u0394",
|
|
119
|
-
Epsilon: "\u0395",
|
|
120
|
-
Zeta: "\u0396",
|
|
121
|
-
Eta: "\u0397",
|
|
122
|
-
Theta: "\u0398",
|
|
123
|
-
Iota: "\u0399",
|
|
124
|
-
Kappa: "\u039A",
|
|
125
|
-
Lambda: "\u039B",
|
|
126
|
-
Mu: "\u039C",
|
|
127
|
-
Nu: "\u039D",
|
|
128
|
-
Xi: "\u039E",
|
|
129
|
-
Omicron: "\u039F",
|
|
130
|
-
Pi: "\u03A0",
|
|
131
|
-
Rho: "\u03A1",
|
|
132
|
-
Sigma: "\u03A3",
|
|
133
|
-
Tau: "\u03A4",
|
|
134
|
-
Upsilon: "\u03A5",
|
|
135
|
-
Phi: "\u03A6",
|
|
136
|
-
Chi: "\u03A7",
|
|
137
|
-
Psi: "\u03A8",
|
|
138
|
-
Omega: "\u03A9",
|
|
139
|
-
alpha: "\u03B1",
|
|
140
|
-
beta: "\u03B2",
|
|
141
|
-
gamma: "\u03B3",
|
|
142
|
-
delta: "\u03B4",
|
|
143
|
-
epsilon: "\u03B5",
|
|
144
|
-
zeta: "\u03B6",
|
|
145
|
-
eta: "\u03B7",
|
|
146
|
-
theta: "\u03B8",
|
|
147
|
-
iota: "\u03B9",
|
|
148
|
-
kappa: "\u03BA",
|
|
149
|
-
lambda: "\u03BB",
|
|
150
|
-
mu: "\u03BC",
|
|
151
|
-
nu: "\u03BD",
|
|
152
|
-
xi: "\u03BE",
|
|
153
|
-
omicron: "\u03BF",
|
|
154
|
-
pi: "\u03C0",
|
|
155
|
-
rho: "\u03C1",
|
|
156
|
-
sigmaf: "\u03C2",
|
|
157
|
-
sigma: "\u03C3",
|
|
158
|
-
tau: "\u03C4",
|
|
159
|
-
upsilon: "\u03C5",
|
|
160
|
-
phi: "\u03C6",
|
|
161
|
-
chi: "\u03C7",
|
|
162
|
-
psi: "\u03C8",
|
|
163
|
-
omega: "\u03C9",
|
|
164
|
-
thetasym: "\u03D1",
|
|
165
|
-
upsih: "\u03D2",
|
|
166
|
-
piv: "\u03D6",
|
|
167
|
-
ensp: "\u2002",
|
|
168
|
-
emsp: "\u2003",
|
|
169
|
-
thinsp: "\u2009",
|
|
170
|
-
zwnj: "\u200C",
|
|
171
|
-
zwj: "\u200D",
|
|
172
|
-
lrm: "\u200E",
|
|
173
|
-
rlm: "\u200F",
|
|
174
|
-
ndash: "\u2013",
|
|
175
|
-
mdash: "\u2014",
|
|
176
|
-
lsquo: "\u2018",
|
|
177
|
-
rsquo: "\u2019",
|
|
178
|
-
sbquo: "\u201A",
|
|
179
|
-
ldquo: "\u201C",
|
|
180
|
-
rdquo: "\u201D",
|
|
181
|
-
bdquo: "\u201E",
|
|
182
|
-
dagger: "\u2020",
|
|
183
|
-
Dagger: "\u2021",
|
|
184
|
-
bull: "\u2022",
|
|
185
|
-
hellip: "\u2026",
|
|
186
|
-
permil: "\u2030",
|
|
187
|
-
prime: "\u2032",
|
|
188
|
-
Prime: "\u2033",
|
|
189
|
-
lsaquo: "\u2039",
|
|
190
|
-
rsaquo: "\u203A",
|
|
191
|
-
oline: "\u203E",
|
|
192
|
-
frasl: "\u2044",
|
|
193
|
-
euro: "\u20AC",
|
|
194
|
-
image: "\u2111",
|
|
195
|
-
weierp: "\u2118",
|
|
196
|
-
real: "\u211C",
|
|
197
|
-
trade: "\u2122",
|
|
198
|
-
alefsym: "\u2135",
|
|
199
|
-
larr: "\u2190",
|
|
200
|
-
uarr: "\u2191",
|
|
201
|
-
rarr: "\u2192",
|
|
202
|
-
darr: "\u2193",
|
|
203
|
-
harr: "\u2194",
|
|
204
|
-
crarr: "\u21B5",
|
|
205
|
-
lArr: "\u21D0",
|
|
206
|
-
uArr: "\u21D1",
|
|
207
|
-
rArr: "\u21D2",
|
|
208
|
-
dArr: "\u21D3",
|
|
209
|
-
hArr: "\u21D4",
|
|
210
|
-
forall: "\u2200",
|
|
211
|
-
part: "\u2202",
|
|
212
|
-
exist: "\u2203",
|
|
213
|
-
empty: "\u2205",
|
|
214
|
-
nabla: "\u2207",
|
|
215
|
-
isin: "\u2208",
|
|
216
|
-
notin: "\u2209",
|
|
217
|
-
ni: "\u220B",
|
|
218
|
-
prod: "\u220F",
|
|
219
|
-
sum: "\u2211",
|
|
220
|
-
minus: "\u2212",
|
|
221
|
-
lowast: "\u2217",
|
|
222
|
-
radic: "\u221A",
|
|
223
|
-
prop: "\u221D",
|
|
224
|
-
infin: "\u221E",
|
|
225
|
-
ang: "\u2220",
|
|
226
|
-
and: "\u2227",
|
|
227
|
-
or: "\u2228",
|
|
228
|
-
cap: "\u2229",
|
|
229
|
-
cup: "\u222A",
|
|
230
|
-
int: "\u222B",
|
|
231
|
-
there4: "\u2234",
|
|
232
|
-
sim: "\u223C",
|
|
233
|
-
cong: "\u2245",
|
|
234
|
-
asymp: "\u2248",
|
|
235
|
-
ne: "\u2260",
|
|
236
|
-
equiv: "\u2261",
|
|
237
|
-
le: "\u2264",
|
|
238
|
-
ge: "\u2265",
|
|
239
|
-
sub: "\u2282",
|
|
240
|
-
sup: "\u2283",
|
|
241
|
-
nsub: "\u2284",
|
|
242
|
-
sube: "\u2286",
|
|
243
|
-
supe: "\u2287",
|
|
244
|
-
oplus: "\u2295",
|
|
245
|
-
otimes: "\u2297",
|
|
246
|
-
perp: "\u22A5",
|
|
247
|
-
sdot: "\u22C5",
|
|
248
|
-
lceil: "\u2308",
|
|
249
|
-
rceil: "\u2309",
|
|
250
|
-
lfloor: "\u230A",
|
|
251
|
-
rfloor: "\u230B",
|
|
252
|
-
lang: "\u2329",
|
|
253
|
-
rang: "\u232A",
|
|
254
|
-
loz: "\u25CA",
|
|
255
|
-
spades: "\u2660",
|
|
256
|
-
clubs: "\u2663",
|
|
257
|
-
hearts: "\u2665",
|
|
258
|
-
diams: "\u2666",
|
|
259
|
-
};
|
|
260
|
-
//# sourceMappingURL=xhtml.js.map
|