Lines Matching +refs:text +refs:line +refs:d
12 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Position", function() { …
13 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Range", function() { ret…
14 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Location", function() { …
15 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LocationLink", function(…
16 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Color", function() { ret…
17 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ColorInformation", funct…
18 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ColorPresentation", func…
19 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "FoldingRangeKind", funct…
20 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "FoldingRange", function(…
21 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DiagnosticRelatedInforma…
22 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DiagnosticSeverity", fun…
23 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DiagnosticTag", function…
24 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DiagnosticCode", functio…
25 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Diagnostic", function() …
26 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Command", function() { r…
27 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "TextEdit", function() { …
28 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "TextDocumentEdit", funct…
29 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CreateFile", function() …
30 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "RenameFile", function() …
31 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DeleteFile", function() …
32 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "WorkspaceEdit", function…
33 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "WorkspaceChange", functi…
34 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "TextDocumentIdentifier",…
35 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "VersionedTextDocumentIde…
36 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "TextDocumentItem", funct…
37 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MarkupKind", function() …
38 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MarkupContent", function…
39 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CompletionItemKind", fun…
40 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "InsertTextFormat", funct…
41 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CompletionItemTag", func…
42 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "InsertReplaceEdit", func…
43 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CompletionItem", functio…
44 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CompletionList", functio…
45 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MarkedString", function(…
46 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Hover", function() { ret…
47 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ParameterInformation", f…
48 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SignatureInformation", f…
49 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DocumentHighlightKind", …
50 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DocumentHighlight", func…
51 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SymbolKind", function() …
52 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SymbolTag", function() {…
53 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SymbolInformation", func…
54 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DocumentSymbol", functio…
55 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CodeActionKind", functio…
56 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CodeActionContext", func…
57 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CodeAction", function() …
58 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CodeLens", function() { …
59 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "FormattingOptions", func…
60 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DocumentLink", function(…
61 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SelectionRange", functio…
62 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "EOL", function() { retur…
63 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "TextDocument", function(…
80 function create(line, character) { argument
81 return { line: line, character: character };
89 … return Is.objectLiteral(candidate) && Is.number(candidate.line) && Is.number(candidate.character);
794 function create(uri, languageId, version, text) {
795 return { uri: uri, languageId: languageId, version: version, text: text };
803 …i) && Is.string(candidate.languageId) && Is.number(candidate.version) && Is.string(candidate.text);
1431 var text = document.getText();
1433 var diff = a.range.start.line - b.range.start.line;
1439 var lastModifiedOffset = text.length;
1445 … text = text.substring(0, startOffset) + e.newText + text.substring(endOffset, text.length);
1452 return text;
1526 this._content = event.text;
1533 var text = this._content;
1535 for (var i = 0; i < text.length; i++) {
1540 var ch = text.charAt(i);
1542 if (ch === '\r' && i + 1 < text.length && text.charAt(i + 1) === '\n') {
1546 if (isLineStart && text.length > 0) {
1547 lineOffsets.push(text.length);
1571 var line = low - 1;
1572 return Position.create(line, offset - lineOffsets[line]);
1576 if (position.line >= lineOffsets.length) {
1579 else if (position.line < 0) {
1582 var lineOffset = lineOffsets[position.line];
1583 …var nextLineOffset = (position.line + 1 < lineOffsets.length) ? lineOffsets[position.line + 1] : t…
1647 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getDefaultCSSDataProvide…
1648 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "newCSSDataProvider", fun…
1649 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getCSSLanguageService", …
1650 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getSCSSLanguageService",…
1651 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getLESSLanguageService",…
1669 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TextDocument", function()…
1671 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ClientCapabilities", func…
1673 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "FileType", function() { r…
1675 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Position", function() { r…
1677 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Range", function() { retu…
1679 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Location", function() { r…
1681 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LocationLink", function()…
1683 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Color", function() { retu…
1685 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ColorInformation", functi…
1687 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ColorPresentation", funct…
1689 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "FoldingRangeKind", functi…
1691 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "FoldingRange", function()…
1693 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DiagnosticRelatedInformat…
1695 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DiagnosticSeverity", func…
1697 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DiagnosticTag", function(…
1699 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DiagnosticCode", function…
1701 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Diagnostic", function() {…
1703 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Command", function() { re…
1705 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TextEdit", function() { r…
1707 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TextDocumentEdit", functi…
1709 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CreateFile", function() {…
1711 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RenameFile", function() {…
1713 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DeleteFile", function() {…
1715 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "WorkspaceEdit", function(…
1717 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "WorkspaceChange", functio…
1719 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TextDocumentIdentifier", …
1721 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VersionedTextDocumentIden…
1723 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TextDocumentItem", functi…
1725 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MarkupKind", function() {…
1727 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MarkupContent", function(…
1729 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CompletionItemKind", func…
1731 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "InsertTextFormat", functi…
1733 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CompletionItemTag", funct…
1735 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "InsertReplaceEdit", funct…
1737 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CompletionItem", function…
1739 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CompletionList", function…
1741 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MarkedString", function()…
1743 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Hover", function() { retu…
1745 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ParameterInformation", fu…
1747 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SignatureInformation", fu…
1749 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DocumentHighlightKind", f…
1751 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DocumentHighlight", funct…
1753 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SymbolKind", function() {…
1755 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SymbolTag", function() { …
1757 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SymbolInformation", funct…
1759 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DocumentSymbol", function…
1761 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CodeActionKind", function…
1763 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CodeActionContext", funct…
1765 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CodeAction", function() {…
1767 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CodeLens", function() { r…
1769 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "FormattingOptions", funct…
1771 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DocumentLink", function()…
1773 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SelectionRange", function…
1775 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "EOL", function() { return…
1826 …findColorSymbols: function (d, s) { return navigation.findDocumentColors(d, s).map(function (s) { …
1863 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ClientCapabilities", fun…
1864 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "FileType", function() { …
1867 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TextDocument", function()…
1869 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Position", function() { r…
1871 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Range", function() { retu…
1873 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Location", function() { r…
1875 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "LocationLink", function()…
1877 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Color", function() { retu…
1879 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ColorInformation", functi…
1881 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ColorPresentation", funct…
1883 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "FoldingRangeKind", functi…
1885 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "FoldingRange", function()…
1887 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DiagnosticRelatedInformat…
1889 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DiagnosticSeverity", func…
1891 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DiagnosticTag", function(…
1893 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DiagnosticCode", function…
1895 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Diagnostic", function() {…
1897 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Command", function() { re…
1899 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TextEdit", function() { r…
1901 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TextDocumentEdit", functi…
1903 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CreateFile", function() {…
1905 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "RenameFile", function() {…
1907 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DeleteFile", function() {…
1909 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "WorkspaceEdit", function(…
1911 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "WorkspaceChange", functio…
1913 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TextDocumentIdentifier", …
1915 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "VersionedTextDocumentIden…
1917 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "TextDocumentItem", functi…
1919 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MarkupKind", function() {…
1921 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MarkupContent", function(…
1923 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CompletionItemKind", func…
1925 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "InsertTextFormat", functi…
1927 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CompletionItemTag", funct…
1929 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "InsertReplaceEdit", funct…
1931 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CompletionItem", function…
1933 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CompletionList", function…
1935 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "MarkedString", function()…
1937 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Hover", function() { retu…
1939 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "ParameterInformation", fu…
1941 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SignatureInformation", fu…
1943 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DocumentHighlightKind", f…
1945 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DocumentHighlight", funct…
1947 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SymbolKind", function() {…
1949 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SymbolTag", function() { …
1951 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SymbolInformation", funct…
1953 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DocumentSymbol", function…
1955 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CodeActionKind", function…
1957 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CodeActionContext", funct…
1959 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CodeAction", function() {…
1961 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "CodeLens", function() { r…
1963 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "FormattingOptions", funct…
1965 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "DocumentLink", function()…
1967 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "SelectionRange", function…
1969 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "EOL", function() { return…
2026 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cssData", function() { r…
23547 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "positionKeywords", funct…
23548 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "repeatStyleKeywords", fu…
23549 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lineStyleKeywords", func…
23550 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "lineWidthKeywords", func…
23551 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "boxKeywords", function()…
23552 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "geometryBoxKeywords", fu…
23553 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "cssWideKeywords", functi…
23554 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "imageFunctions", functio…
23555 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "transitionTimingFunction…
23556 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "basicShapeFunctions", fu…
23557 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "units", function() { ret…
23558 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "html5Tags", function() {…
23559 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "svgElements", function()…
23560 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "pageBoxDirectives", func…
23712 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "colorFunctions", functio…
23713 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "colors", function() { re…
23714 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "colorKeywords", function…
23715 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isColorConstructor", fun…
23716 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isColorValue", function(…
23717 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hexDigit", function() { …
23718 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "colorFromHex", function(…
23719 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "colorFrom256RGB", functi…
23720 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "colorFromHSL", function(…
23721 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "hslFromColor", function(…
23722 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getColorValue", function…
23968 function colorFromHex(text) { argument
23969 if (text[0] !== '#') {
23972 switch (text.length) {
23975 red: (hexDigit(text.charCodeAt(1)) * 0x11) / 255.0,
23976 green: (hexDigit(text.charCodeAt(2)) * 0x11) / 255.0,
23977 blue: (hexDigit(text.charCodeAt(3)) * 0x11) / 255.0,
23982 red: (hexDigit(text.charCodeAt(1)) * 0x11) / 255.0,
23983 green: (hexDigit(text.charCodeAt(2)) * 0x11) / 255.0,
23984 blue: (hexDigit(text.charCodeAt(3)) * 0x11) / 255.0,
23985 alpha: (hexDigit(text.charCodeAt(4)) * 0x11) / 255.0,
23989 red: (hexDigit(text.charCodeAt(1)) * 0x10 + hexDigit(text.charCodeAt(2))) / 255.0,
23990 green: (hexDigit(text.charCodeAt(3)) * 0x10 + hexDigit(text.charCodeAt(4))) / 255.0,
23991 blue: (hexDigit(text.charCodeAt(5)) * 0x10 + hexDigit(text.charCodeAt(6))) / 255.0,
23996 red: (hexDigit(text.charCodeAt(1)) * 0x10 + hexDigit(text.charCodeAt(2))) / 255.0,
23997 green: (hexDigit(text.charCodeAt(3)) * 0x10 + hexDigit(text.charCodeAt(4))) / 255.0,
23998 blue: (hexDigit(text.charCodeAt(5)) * 0x10 + hexDigit(text.charCodeAt(6))) / 255.0,
23999 alpha: (hexDigit(text.charCodeAt(7)) * 0x10 + hexDigit(text.charCodeAt(8))) / 255.0
24074 var text = node.getText();
24075 return colorFromHex(text);
24141 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CSSDataManager", functio…
24250 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CSSDataProvider", functi…
24318 function isPropertyData(d) { argument
24319 return typeof d.name === 'string';
24321 function isAtDirective(d) { argument
24322 return typeof d.name === 'string';
24324 function isPseudoClassData(d) { argument
24325 return typeof d.name === 'string';
24327 function isPseudoElementData(d) { argument
24328 return typeof d.name === 'string';
24343 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "browserNames", function(…
24344 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getEntryDescription", fu…
24345 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "textToMarkedString", fun…
24346 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getBrowserLabel", functi…
24391 function textToMarkedString(text) { argument
24392 …text = text.replace(/[\\`*_{}[\]()#+\-.!]/g, '\\$&'); // escape markdown syntax tokens: http://dar…
24393 return text.replace(/</g, '<').replace(/>/g, '>');
24486 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "browserNames", function()…
24488 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getEntryDescription", fun…
24490 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "textToMarkedString", func…
24492 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getBrowserLabel", functio…
24495 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "colorFunctions", function…
24497 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "colors", function() { ret…
24499 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "colorKeywords", function(…
24501 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isColorConstructor", func…
24503 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "isColorValue", function()…
24505 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "hexDigit", function() { r…
24507 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "colorFromHex", function()…
24509 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "colorFrom256RGB", functio…
24511 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "colorFromHSL", function()…
24513 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "hslFromColor", function()…
24515 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "getColorValue", function(…
24518 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "positionKeywords", functi…
24520 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "repeatStyleKeywords", fun…
24522 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lineStyleKeywords", funct…
24524 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "lineWidthKeywords", funct…
24526 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "boxKeywords", function() …
24528 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "geometryBoxKeywords", fun…
24530 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "cssWideKeywords", functio…
24532 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "imageFunctions", function…
24534 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "transitionTimingFunctions…
24536 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "basicShapeFunctions", fun…
24538 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "units", function() { retu…
24540 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "html5Tags", function() { …
24542 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "svgElements", function() …
24544 /* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "pageBoxDirectives", funct…
24567 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CSSIssueType", function(…
24568 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ParseError", function() …
24633 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "NodeType", function() { …
24634 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ReferenceType", function…
24635 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getNodeAtOffset", functi…
24636 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getNodePath", function()…
24637 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getParentDeclaration", f…
24638 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Node", function() { retu…
24639 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Nodelist", function() { …
24640 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Identifier", function() …
24641 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Stylesheet", function() …
24642 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Declarations", function(…
24643 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BodyDeclaration", functi…
24644 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "RuleSet", function() { r…
24645 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Selector", function() { …
24646 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SimpleSelector", functio…
24647 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AtApplyRule", function()…
24648 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AbstractDeclaration", fu…
24649 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CustomPropertyDeclaratio…
24650 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CustomPropertySet", func…
24651 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Declaration", function()…
24652 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Property", function() { …
24653 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Invocation", function() …
24654 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Function", function() { …
24655 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "FunctionParameter", func…
24656 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "FunctionArgument", funct…
24657 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "IfStatement", function()…
24658 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ForStatement", function(…
24659 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "EachStatement", function…
24660 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "WhileStatement", functio…
24661 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ElseStatement", function…
24662 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "FunctionDeclaration", fu…
24663 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ViewPort", function() { …
24664 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "FontFace", function() { …
24665 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "NestedProperties", funct…
24666 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Keyframe", function() { …
24667 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "KeyframeSelector", funct…
24668 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Import", function() { re…
24669 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Use", function() { retur…
24670 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ModuleConfiguration", fu…
24671 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Forward", function() { r…
24672 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ForwardVisibility", func…
24673 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Namespace", function() {…
24674 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Media", function() { ret…
24675 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Supports", function() { …
24676 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Document", function() { …
24677 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Medialist", function() {…
24678 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MediaQuery", function() …
24679 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SupportsCondition", func…
24680 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Page", function() { retu…
24681 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "PageBoxMarginBox", funct…
24682 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Expression", function() …
24683 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BinaryExpression", funct…
24684 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Term", function() { retu…
24685 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AttributeSelector", func…
24686 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Operator", function() { …
24687 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "HexColorValue", function…
24688 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "NumericValue", function(…
24689 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "VariableDeclaration", fu…
24690 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Interpolation", function…
24691 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Variable", function() { …
24692 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ExtendsReference", funct…
24693 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MixinContentReference", …
24694 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MixinContentDeclaration"…
24695 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MixinReference", functio…
24696 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MixinDeclaration", funct…
24697 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "UnknownAtRule", function…
24698 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ListEntry", function() {…
24699 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LessGuard", function() {…
24700 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GuardCondition", functio…
24701 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Module", function() { re…
24702 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Level", function() { ret…
24703 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Marker", function() { re…
24704 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ParseErrorCollector", fu…
24712 var extendStatics = function (d, b) { argument
24714 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || argument
24715 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
24716 return extendStatics(d, b);
24718 return function (d, b) { argument
24719 extendStatics(d, b);
24720 function __() { this.constructor = d; }
24721 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); class
26660 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Parser", function() { re…
26693 …type: _cssScanner_js__WEBPACK_IMPORTED_MODULE_0__["TokenType"].EOF, offset: -1, len: 0, text: '' }; property in AnonymousFunction410cd55f18f00.Parser.Parser.token
26696 Parser.prototype.peekIdent = function (text) { argument
26697 …["TokenType"].Ident === this.token.type && text.length === this.token.text.length && text === this…
26699 Parser.prototype.peekKeyword = function (text) { argument
26700 …kenType"].AtKeyword === this.token.type && text.length === this.token.text.length && text === this…
26702 Parser.prototype.peekDelim = function (text) { argument
26703 …js__WEBPACK_IMPORTED_MODULE_0__["TokenType"].Delim === this.token.type && text === this.token.text;
26712 return regEx.test(this.token.text);
26746 … if (keyword.length === this.token.text.length && keyword === this.token.text.toLowerCase()) {
26761 Parser.prototype.acceptIdent = function (text) { argument
26762 if (this.peekIdent(text)) {
26768 Parser.prototype.acceptKeyword = function (text) { argument
26769 if (this.peekKeyword(text)) {
26775 Parser.prototype.acceptDelim = function (text) { argument
26776 if (this.peekDelim(text)) {
26783 if (regEx.test(this.token.text)) {
26856 var text = textDocument.getText();
26861 return text.substr(offset, length);
26863 return this.internalParse(text, this._parseStylesheet, textProvider);
27407 var text = this.token.text.toLowerCase();
27408 while (this.acceptIdent(text)) {
28143 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "TokenType", function() {…
28144 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "MultiLineStream", functi…
28145 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Scanner", function() { r…
28344 Scanner.prototype.finishToken = function (offset, type, text) { argument
28349 text: text || this.stream.substring(offset)
28722 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Scope", function() { ret…
28723 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GlobalScope", function()…
28724 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Symbol", function() { re…
28725 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ScopeBuilder", function(…
28726 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Symbols", function() { r…
28735 var extendStatics = function (d, b) { argument
28737 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || argument
28738 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
28739 return extendStatics(d, b);
28741 return function (d, b) { argument
28742 extendStatics(d, b);
28743 function __() { this.constructor = d; }
28744 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
29081 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LESSParser", function() …
29093 var extendStatics = function (d, b) { argument
29095 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || argument
29096 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
29097 return extendStatics(d, b);
29099 return function (d, b) { argument
29100 extendStatics(d, b);
29101 function __() { this.constructor = d; }
29102 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
29838 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ellipsis", function() { …
29839 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LESSScanner", function()…
29847 var extendStatics = function (d, b) { argument
29849 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || argument
29850 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
29851 return extendStatics(d, b);
29853 return function (d, b) { argument
29854 extendStatics(d, b);
29855 function __() { this.constructor = d; }
29856 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
29930 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SCSSIssueType", function…
29931 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SCSSParseError", functio…
29966 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SCSSParser", function() …
29979 var extendStatics = function (d, b) { argument
29981 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || argument
29982 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
29983 return extendStatics(d, b);
29985 return function (d, b) { argument
29986 extendStatics(d, b);
29987 function __() { this.constructor = d; }
29988 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
30772 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "VariableName", function(…
30773 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "InterpolationFunction", …
30774 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Default", function() { r…
30775 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "EqualsOperator", functio…
30776 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "NotEqualsOperator", func…
30777 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "GreaterEqualsOperator", …
30778 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SmallerEqualsOperator", …
30779 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Ellipsis", function() { …
30780 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Module", function() { re…
30781 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SCSSScanner", function()…
30789 var extendStatics = function (d, b) { argument
30791 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || argument
30792 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
30793 return extendStatics(d, b);
30795 return function (d, b) { argument
30796 extendStatics(d, b);
30797 function __() { this.constructor = d; }
30798 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
30910 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CSSCodeActions", functio…
31010 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CSSCompletion", function…
31134 …ageTypes_js__WEBPACK_IMPORTED_MODULE_4__["Position"].create(this.position.line, this.position.char…
31551 if (start.line === end.line) {
31754 …ageTypes_js__WEBPACK_IMPORTED_MODULE_4__["Position"].create(this.position.line, this.position.char…
32083 function moveCursorInsideParenthesis(text) { argument
32084 return text.replace(/\(\)$/, "($1)");
32131 var text = document.getText();
32132 while (i >= 0 && ' \t\n\r":{[()]},*>+'.indexOf(text.charAt(i)) === -1) {
32135 return text.substring(i + 1, offset);
32154 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getFoldingRanges", funct…
32172 return document.positionAt(t.offset).line;
32175 return document.positionAt(t.offset + t.len).line;
32213 … delimiterStack.push({ line: getStartLine(token), type: 'brace', isStart: true });
32233 if (prevDelimiter.line !== endLine) {
32235 startLine: prevDelimiter.line,
32251 return { line: getStartLine(token), type: 'comment', isStart: true };
32254 return { line: getEndLine(token), type: 'comment', isStart: false };
32258 … var matches = token.text.match(/^\s*\/\*\s*(#region|#endregion)\b\s*(.*?)\s*\*\//);
32263 … var matches_1 = token.text.match(/^\s*\/\/\s*(#region|#endregion)\b\s*(.*?)\s*/);
32283 if (prevDelimiter.line !== currDelimiter.line) {
32285 startLine: prevDelimiter.line,
32286 endLine: currDelimiter.line,
32364 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CSSHover", function() { …
32531 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CSSNavigation", function…
32708 … if (range.start.line === range.end.line && range.start.character === range.end.character) {
32971 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getSelectionRanges", fun…
33034 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CSSValidation", function…
33096 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LESSCompletion", functio…
33106 var extendStatics = function (d, b) { argument
33108 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || argument
33109 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
33110 return extendStatics(d, b);
33112 return function (d, b) { argument
33113 extendStatics(d, b);
33114 function __() { this.constructor = d; }
33115 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
33508 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LintVisitor", function()…
33685 var text = keyword.getText();
33686 this.keyframes.add(node.getName(), text, (text !== '@keyframes') ? keyword : null);
34072 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rule", function() { retu…
34073 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Setting", function() { r…
34074 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Rules", function() { ret…
34075 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Settings", function() { …
34076 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LintConfigurationSetting…
34175 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Element", function() { r…
34176 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { r…
34396 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "PathCompletionParticipan…
34624 …return _cssLanguageTypes_js__WEBPACK_IMPORTED_MODULE_0__["Position"].create(pos.line, pos.characte…
34644 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SCSSCompletion", functio…
34655 var extendStatics = function (d, b) { argument
34657 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || argument
34658 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
34659 return extendStatics(d, b);
34661 return function (d, b) { argument
34662 extendStatics(d, b);
34663 function __() { this.constructor = d; }
34664 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
35038 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SCSSNavigation", functio…
35050 var extendStatics = function (d, b) { argument
35052 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || argument
35053 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
35054 return extendStatics(d, b);
35056 return function (d, b) { argument
35057 extendStatics(d, b);
35058 function __() { this.constructor = d; }
35059 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
35210 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "Element", function() { r…
35211 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "RootElement", function()…
35212 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LabelElement", function(…
35213 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "toElement", function() {…
35214 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SelectorPrinting", funct…
35215 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "selectorToElement", func…
35225 var extendStatics = function (d, b) { argument
35227 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || argument
35228 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
35229 return extendStatics(d, b);
35231 return function (d, b) { argument
35232 extendStatics(d, b);
35233 function __() { this.constructor = d; }
35234 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
35267 Element.prototype.append = function (text) { argument
35270 last.value = last.value + text;
35273 Element.prototype.prepend = function (text) { argument
35276 first.value = text + first.value;
35484 var text = child.getText();
35485 result.addAttr('name', text === '*' ? 'element' : unescape(text));
35545 return token.text;
35570 SelectorPrinting.prototype.isPseudoElementIdentifier = function (text) { argument
35571 var match = text.match(/^::?([\w-]+)/);
35599 var text = element.getText();
35600 if (_this.isPseudoElementIdentifier(text)) {
35605 if (text.match(/^:not/i)) {
35723 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "findFirst", function() {…
35724 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "includes", function() { …
35725 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "union", function() { ret…
35785 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "values", function() { re…
35786 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isDefined", function() {…
35811 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "isAbsolutePath", functio…
35812 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "dirname", function() { r…
35813 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "basename", function() { …
35814 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "extname", function() { r…
35815 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "resolvePath", function()…
35816 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "normalizePath", function…
35817 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "joinPath", function() { …
35911 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "startsWith", function() …
35912 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "endsWith", function() { …
35913 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "difference", function() …
35914 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getLimitedString", funct…
35915 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "trim", function() { retu…
36022 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "TextDocument", function(…
36074 …this._content = this._content.substring(0, startOffset) + change.text + this._content.substring(en…
36076 var startLine = Math.max(range.start.line, 0);
36077 var endLine = Math.max(range.end.line, 0);
36079 var addedLineOffsets = computeLineOffsets(change.text, false, startOffset);
36093 var diff = change.text.length - (endOffset - startOffset);
36101 this._content = change.text;
36121 return { line: 0, character: offset };
36134 var line = low - 1;
36135 return { line: line, character: offset - lineOffsets[line] };
36139 if (position.line >= lineOffsets.length) {
36142 else if (position.line < 0) {
36145 var lineOffset = lineOffsets[position.line];
36146 …var nextLineOffset = (position.line + 1 < lineOffsets.length) ? lineOffsets[position.line + 1] : t…
36159 typeof candidate.text === 'string' && candidate.range !== undefined &&
36165 …typeof candidate.text === 'string' && candidate.range === undefined && candidate.rangeLength === u…
36202 var text = document.getText();
36204 var diff = a.range.start.line - b.range.start.line;
36219 spans.push(text.substring(lastModifiedOffset, startOffset));
36226 spans.push(text.substr(lastModifiedOffset));
36263 function computeLineOffsets(text, isAtLineStart, textOffset) { argument
36266 for (var i = 0; i < text.length; i++) {
36267 var ch = text.charCodeAt(i);
36269 …if (ch === 13 /* CarriageReturn */ && i + 1 < text.length && text.charCodeAt(i + 1) === 10 /* Line…
36280 if (start.line > end.line || (start.line === end.line && start.character > end.character)) {
36305 /* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d…
36306 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "uriToFsPath", function()…
36313 var extendStatics = function (d, b) { argument
36315 ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || argument
36316 function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
36317 return extendStatics(d, b);
36319 return function (d, b) { argument
36320 extendStatics(d, b);
36321 function __() { this.constructor = d; }
36322 d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
36964 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "setupMode", function() {…
37049 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "loadMessageBundle", func…
37050 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "config", function() { re…
37094 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DiagnosticsAdapter", fun…
37095 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "CompletionAdapter", func…
37096 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "HoverAdapter", function(…
37097 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DocumentHighlightAdapter…
37098 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DefinitionAdapter", func…
37099 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ReferenceAdapter", funct…
37100 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "RenameAdapter", function…
37101 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DocumentSymbolAdapter", …
37102 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DocumentColorAdapter", f…
37103 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "FoldingRangeAdapter", fu…
37104 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SelectionRangeAdapter", …
37166 this._disposables.forEach(function (d) { return d && d.dispose(); }); argument
37175 var markers = diagnostics.map(function (d) { return toDiagnostics(resource, d); }); argument
37206 startLineNumber: diag.range.start.line + 1,
37208 endLineNumber: diag.range.end.line + 1,
37220 return { character: position.column - 1, line: position.lineNumber - 1 };
37228 line: range.startLineNumber - 1,
37231 end: { line: range.endLineNumber - 1, character: range.endColumn - 1 }
37238 …__WEBPACK_IMPORTED_MODULE_1__["Range"](range.start.line + 1, range.start.character + 1, range.end.…
37292 text: textEdit.newText
37512 text: e.newText
37727 /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "WorkerManager", function…