LaravelTest
775 строк · 41.6 Кб
1// CodeMirror, copyright (c) by Marijn Haverbeke and others
2// Distributed under an MIT license: https://codemirror.net/LICENSE
3
4// Stylus mode created by Dmitry Kiselyov http://git.io/AaRB
5
6(function(mod) {7if (typeof exports == "object" && typeof module == "object") // CommonJS8mod(require("../../lib/codemirror"));9else if (typeof define == "function" && define.amd) // AMD10define(["../../lib/codemirror"], mod);11else // Plain browser env12mod(CodeMirror);13})(function(CodeMirror) {14"use strict";15
16CodeMirror.defineMode("stylus", function(config) {17var indentUnit = config.indentUnit,18indentUnitString = '',19tagKeywords = keySet(tagKeywords_),20tagVariablesRegexp = /^(a|b|i|s|col|em)$/i,21propertyKeywords = keySet(propertyKeywords_),22nonStandardPropertyKeywords = keySet(nonStandardPropertyKeywords_),23valueKeywords = keySet(valueKeywords_),24colorKeywords = keySet(colorKeywords_),25documentTypes = keySet(documentTypes_),26documentTypesRegexp = wordRegexp(documentTypes_),27mediaFeatures = keySet(mediaFeatures_),28mediaTypes = keySet(mediaTypes_),29fontProperties = keySet(fontProperties_),30operatorsRegexp = /^\s*([.]{2,3}|&&|\|\||\*\*|[?!=:]?=|[-+*\/%<>]=?|\?:|\~)/,31wordOperatorKeywordsRegexp = wordRegexp(wordOperatorKeywords_),32blockKeywords = keySet(blockKeywords_),33vendorPrefixesRegexp = new RegExp(/^\-(moz|ms|o|webkit)-/i),34commonAtoms = keySet(commonAtoms_),35firstWordMatch = "",36states = {},37ch,38style,39type,40override;41
42while (indentUnitString.length < indentUnit) indentUnitString += ' ';43
44/**45* Tokenizers
46*/
47function tokenBase(stream, state) {48firstWordMatch = stream.string.match(/(^[\w-]+\s*=\s*$)|(^\s*[\w-]+\s*=\s*[\w-])|(^\s*(\.|#|@|\$|\&|\[|\d|\+|::?|\{|\>|~|\/)?\s*[\w-]*([a-z0-9-]|\*|\/\*)(\(|,)?)/);49state.context.line.firstWord = firstWordMatch ? firstWordMatch[0].replace(/^\s*/, "") : "";50state.context.line.indent = stream.indentation();51ch = stream.peek();52
53// Line comment54if (stream.match("//")) {55stream.skipToEnd();56return ["comment", "comment"];57}58// Block comment59if (stream.match("/*")) {60state.tokenize = tokenCComment;61return tokenCComment(stream, state);62}63// String64if (ch == "\"" || ch == "'") {65stream.next();66state.tokenize = tokenString(ch);67return state.tokenize(stream, state);68}69// Def70if (ch == "@") {71stream.next();72stream.eatWhile(/[\w\\-]/);73return ["def", stream.current()];74}75// ID selector or Hex color76if (ch == "#") {77stream.next();78// Hex color79if (stream.match(/^[0-9a-f]{3}([0-9a-f]([0-9a-f]{2}){0,2})?\b(?!-)/i)) {80return ["atom", "atom"];81}82// ID selector83if (stream.match(/^[a-z][\w-]*/i)) {84return ["builtin", "hash"];85}86}87// Vendor prefixes88if (stream.match(vendorPrefixesRegexp)) {89return ["meta", "vendor-prefixes"];90}91// Numbers92if (stream.match(/^-?[0-9]?\.?[0-9]/)) {93stream.eatWhile(/[a-z%]/i);94return ["number", "unit"];95}96// !important|optional97if (ch == "!") {98stream.next();99return [stream.match(/^(important|optional)/i) ? "keyword": "operator", "important"];100}101// Class102if (ch == "." && stream.match(/^\.[a-z][\w-]*/i)) {103return ["qualifier", "qualifier"];104}105// url url-prefix domain regexp106if (stream.match(documentTypesRegexp)) {107if (stream.peek() == "(") state.tokenize = tokenParenthesized;108return ["property", "word"];109}110// Mixins / Functions111if (stream.match(/^[a-z][\w-]*\(/i)) {112stream.backUp(1);113return ["keyword", "mixin"];114}115// Block mixins116if (stream.match(/^(\+|-)[a-z][\w-]*\(/i)) {117stream.backUp(1);118return ["keyword", "block-mixin"];119}120// Parent Reference BEM naming121if (stream.string.match(/^\s*&/) && stream.match(/^[-_]+[a-z][\w-]*/)) {122return ["qualifier", "qualifier"];123}124// / Root Reference & Parent Reference125if (stream.match(/^(\/|&)(-|_|:|\.|#|[a-z])/)) {126stream.backUp(1);127return ["variable-3", "reference"];128}129if (stream.match(/^&{1}\s*$/)) {130return ["variable-3", "reference"];131}132// Word operator133if (stream.match(wordOperatorKeywordsRegexp)) {134return ["operator", "operator"];135}136// Word137if (stream.match(/^\$?[-_]*[a-z0-9]+[\w-]*/i)) {138// Variable139if (stream.match(/^(\.|\[)[\w-\'\"\]]+/i, false)) {140if (!wordIsTag(stream.current())) {141stream.match('.');142return ["variable-2", "variable-name"];143}144}145return ["variable-2", "word"];146}147// Operators148if (stream.match(operatorsRegexp)) {149return ["operator", stream.current()];150}151// Delimiters152if (/[:;,{}\[\]\(\)]/.test(ch)) {153stream.next();154return [null, ch];155}156// Non-detected items157stream.next();158return [null, null];159}160
161/**162* Token comment
163*/
164function tokenCComment(stream, state) {165var maybeEnd = false, ch;166while ((ch = stream.next()) != null) {167if (maybeEnd && ch == "/") {168state.tokenize = null;169break;170}171maybeEnd = (ch == "*");172}173return ["comment", "comment"];174}175
176/**177* Token string
178*/
179function tokenString(quote) {180return function(stream, state) {181var escaped = false, ch;182while ((ch = stream.next()) != null) {183if (ch == quote && !escaped) {184if (quote == ")") stream.backUp(1);185break;186}187escaped = !escaped && ch == "\\";188}189if (ch == quote || !escaped && quote != ")") state.tokenize = null;190return ["string", "string"];191};192}193
194/**195* Token parenthesized
196*/
197function tokenParenthesized(stream, state) {198stream.next(); // Must be "("199if (!stream.match(/\s*[\"\')]/, false))200state.tokenize = tokenString(")");201else202state.tokenize = null;203return [null, "("];204}205
206/**207* Context management
208*/
209function Context(type, indent, prev, line) {210this.type = type;211this.indent = indent;212this.prev = prev;213this.line = line || {firstWord: "", indent: 0};214}215
216function pushContext(state, stream, type, indent) {217indent = indent >= 0 ? indent : indentUnit;218state.context = new Context(type, stream.indentation() + indent, state.context);219return type;220}221
222function popContext(state, currentIndent) {223var contextIndent = state.context.indent - indentUnit;224currentIndent = currentIndent || false;225state.context = state.context.prev;226if (currentIndent) state.context.indent = contextIndent;227return state.context.type;228}229
230function pass(type, stream, state) {231return states[state.context.type](type, stream, state);232}233
234function popAndPass(type, stream, state, n) {235for (var i = n || 1; i > 0; i--)236state.context = state.context.prev;237return pass(type, stream, state);238}239
240
241/**242* Parser
243*/
244function wordIsTag(word) {245return word.toLowerCase() in tagKeywords;246}247
248function wordIsProperty(word) {249word = word.toLowerCase();250return word in propertyKeywords || word in fontProperties;251}252
253function wordIsBlock(word) {254return word.toLowerCase() in blockKeywords;255}256
257function wordIsVendorPrefix(word) {258return word.toLowerCase().match(vendorPrefixesRegexp);259}260
261function wordAsValue(word) {262var wordLC = word.toLowerCase();263var override = "variable-2";264if (wordIsTag(word)) override = "tag";265else if (wordIsBlock(word)) override = "block-keyword";266else if (wordIsProperty(word)) override = "property";267else if (wordLC in valueKeywords || wordLC in commonAtoms) override = "atom";268else if (wordLC == "return" || wordLC in colorKeywords) override = "keyword";269
270// Font family271else if (word.match(/^[A-Z]/)) override = "string";272return override;273}274
275function typeIsBlock(type, stream) {276return ((endOfLine(stream) && (type == "{" || type == "]" || type == "hash" || type == "qualifier")) || type == "block-mixin");277}278
279function typeIsInterpolation(type, stream) {280return type == "{" && stream.match(/^\s*\$?[\w-]+/i, false);281}282
283function typeIsPseudo(type, stream) {284return type == ":" && stream.match(/^[a-z-]+/, false);285}286
287function startOfLine(stream) {288return stream.sol() || stream.string.match(new RegExp("^\\s*" + escapeRegExp(stream.current())));289}290
291function endOfLine(stream) {292return stream.eol() || stream.match(/^\s*$/, false);293}294
295function firstWordOfLine(line) {296var re = /^\s*[-_]*[a-z0-9]+[\w-]*/i;297var result = typeof line == "string" ? line.match(re) : line.string.match(re);298return result ? result[0].replace(/^\s*/, "") : "";299}300
301
302/**303* Block
304*/
305states.block = function(type, stream, state) {306if ((type == "comment" && startOfLine(stream)) ||307(type == "," && endOfLine(stream)) ||308type == "mixin") {309return pushContext(state, stream, "block", 0);310}311if (typeIsInterpolation(type, stream)) {312return pushContext(state, stream, "interpolation");313}314if (endOfLine(stream) && type == "]") {315if (!/^\s*(\.|#|:|\[|\*|&)/.test(stream.string) && !wordIsTag(firstWordOfLine(stream))) {316return pushContext(state, stream, "block", 0);317}318}319if (typeIsBlock(type, stream)) {320return pushContext(state, stream, "block");321}322if (type == "}" && endOfLine(stream)) {323return pushContext(state, stream, "block", 0);324}325if (type == "variable-name") {326if (stream.string.match(/^\s?\$[\w-\.\[\]\'\"]+$/) || wordIsBlock(firstWordOfLine(stream))) {327return pushContext(state, stream, "variableName");328}329else {330return pushContext(state, stream, "variableName", 0);331}332}333if (type == "=") {334if (!endOfLine(stream) && !wordIsBlock(firstWordOfLine(stream))) {335return pushContext(state, stream, "block", 0);336}337return pushContext(state, stream, "block");338}339if (type == "*") {340if (endOfLine(stream) || stream.match(/\s*(,|\.|#|\[|:|{)/,false)) {341override = "tag";342return pushContext(state, stream, "block");343}344}345if (typeIsPseudo(type, stream)) {346return pushContext(state, stream, "pseudo");347}348if (/@(font-face|media|supports|(-moz-)?document)/.test(type)) {349return pushContext(state, stream, endOfLine(stream) ? "block" : "atBlock");350}351if (/@(-(moz|ms|o|webkit)-)?keyframes$/.test(type)) {352return pushContext(state, stream, "keyframes");353}354if (/@extends?/.test(type)) {355return pushContext(state, stream, "extend", 0);356}357if (type && type.charAt(0) == "@") {358
359// Property Lookup360if (stream.indentation() > 0 && wordIsProperty(stream.current().slice(1))) {361override = "variable-2";362return "block";363}364if (/(@import|@require|@charset)/.test(type)) {365return pushContext(state, stream, "block", 0);366}367return pushContext(state, stream, "block");368}369if (type == "reference" && endOfLine(stream)) {370return pushContext(state, stream, "block");371}372if (type == "(") {373return pushContext(state, stream, "parens");374}375
376if (type == "vendor-prefixes") {377return pushContext(state, stream, "vendorPrefixes");378}379if (type == "word") {380var word = stream.current();381override = wordAsValue(word);382
383if (override == "property") {384if (startOfLine(stream)) {385return pushContext(state, stream, "block", 0);386} else {387override = "atom";388return "block";389}390}391
392if (override == "tag") {393
394// tag is a css value395if (/embed|menu|pre|progress|sub|table/.test(word)) {396if (wordIsProperty(firstWordOfLine(stream))) {397override = "atom";398return "block";399}400}401
402// tag is an attribute403if (stream.string.match(new RegExp("\\[\\s*" + word + "|" + word +"\\s*\\]"))) {404override = "atom";405return "block";406}407
408// tag is a variable409if (tagVariablesRegexp.test(word)) {410if ((startOfLine(stream) && stream.string.match(/=/)) ||411(!startOfLine(stream) &&412!stream.string.match(/^(\s*\.|#|\&|\[|\/|>|\*)/) &&413!wordIsTag(firstWordOfLine(stream)))) {414override = "variable-2";415if (wordIsBlock(firstWordOfLine(stream))) return "block";416return pushContext(state, stream, "block", 0);417}418}419
420if (endOfLine(stream)) return pushContext(state, stream, "block");421}422if (override == "block-keyword") {423override = "keyword";424
425// Postfix conditionals426if (stream.current(/(if|unless)/) && !startOfLine(stream)) {427return "block";428}429return pushContext(state, stream, "block");430}431if (word == "return") return pushContext(state, stream, "block", 0);432
433// Placeholder selector434if (override == "variable-2" && stream.string.match(/^\s?\$[\w-\.\[\]\'\"]+$/)) {435return pushContext(state, stream, "block");436}437}438return state.context.type;439};440
441
442/**443* Parens
444*/
445states.parens = function(type, stream, state) {446if (type == "(") return pushContext(state, stream, "parens");447if (type == ")") {448if (state.context.prev.type == "parens") {449return popContext(state);450}451if ((stream.string.match(/^[a-z][\w-]*\(/i) && endOfLine(stream)) ||452wordIsBlock(firstWordOfLine(stream)) ||453/(\.|#|:|\[|\*|&|>|~|\+|\/)/.test(firstWordOfLine(stream)) ||454(!stream.string.match(/^-?[a-z][\w-\.\[\]\'\"]*\s*=/) &&455wordIsTag(firstWordOfLine(stream)))) {456return pushContext(state, stream, "block");457}458if (stream.string.match(/^[\$-]?[a-z][\w-\.\[\]\'\"]*\s*=/) ||459stream.string.match(/^\s*(\(|\)|[0-9])/) ||460stream.string.match(/^\s+[a-z][\w-]*\(/i) ||461stream.string.match(/^\s+[\$-]?[a-z]/i)) {462return pushContext(state, stream, "block", 0);463}464if (endOfLine(stream)) return pushContext(state, stream, "block");465else return pushContext(state, stream, "block", 0);466}467if (type && type.charAt(0) == "@" && wordIsProperty(stream.current().slice(1))) {468override = "variable-2";469}470if (type == "word") {471var word = stream.current();472override = wordAsValue(word);473if (override == "tag" && tagVariablesRegexp.test(word)) {474override = "variable-2";475}476if (override == "property" || word == "to") override = "atom";477}478if (type == "variable-name") {479return pushContext(state, stream, "variableName");480}481if (typeIsPseudo(type, stream)) {482return pushContext(state, stream, "pseudo");483}484return state.context.type;485};486
487
488/**489* Vendor prefixes
490*/
491states.vendorPrefixes = function(type, stream, state) {492if (type == "word") {493override = "property";494return pushContext(state, stream, "block", 0);495}496return popContext(state);497};498
499
500/**501* Pseudo
502*/
503states.pseudo = function(type, stream, state) {504if (!wordIsProperty(firstWordOfLine(stream.string))) {505stream.match(/^[a-z-]+/);506override = "variable-3";507if (endOfLine(stream)) return pushContext(state, stream, "block");508return popContext(state);509}510return popAndPass(type, stream, state);511};512
513
514/**515* atBlock
516*/
517states.atBlock = function(type, stream, state) {518if (type == "(") return pushContext(state, stream, "atBlock_parens");519if (typeIsBlock(type, stream)) {520return pushContext(state, stream, "block");521}522if (typeIsInterpolation(type, stream)) {523return pushContext(state, stream, "interpolation");524}525if (type == "word") {526var word = stream.current().toLowerCase();527if (/^(only|not|and|or)$/.test(word))528override = "keyword";529else if (documentTypes.hasOwnProperty(word))530override = "tag";531else if (mediaTypes.hasOwnProperty(word))532override = "attribute";533else if (mediaFeatures.hasOwnProperty(word))534override = "property";535else if (nonStandardPropertyKeywords.hasOwnProperty(word))536override = "string-2";537else override = wordAsValue(stream.current());538if (override == "tag" && endOfLine(stream)) {539return pushContext(state, stream, "block");540}541}542if (type == "operator" && /^(not|and|or)$/.test(stream.current())) {543override = "keyword";544}545return state.context.type;546};547
548states.atBlock_parens = function(type, stream, state) {549if (type == "{" || type == "}") return state.context.type;550if (type == ")") {551if (endOfLine(stream)) return pushContext(state, stream, "block");552else return pushContext(state, stream, "atBlock");553}554if (type == "word") {555var word = stream.current().toLowerCase();556override = wordAsValue(word);557if (/^(max|min)/.test(word)) override = "property";558if (override == "tag") {559tagVariablesRegexp.test(word) ? override = "variable-2" : override = "atom";560}561return state.context.type;562}563return states.atBlock(type, stream, state);564};565
566
567/**568* Keyframes
569*/
570states.keyframes = function(type, stream, state) {571if (stream.indentation() == "0" && ((type == "}" && startOfLine(stream)) || type == "]" || type == "hash"572|| type == "qualifier" || wordIsTag(stream.current()))) {573return popAndPass(type, stream, state);574}575if (type == "{") return pushContext(state, stream, "keyframes");576if (type == "}") {577if (startOfLine(stream)) return popContext(state, true);578else return pushContext(state, stream, "keyframes");579}580if (type == "unit" && /^[0-9]+\%$/.test(stream.current())) {581return pushContext(state, stream, "keyframes");582}583if (type == "word") {584override = wordAsValue(stream.current());585if (override == "block-keyword") {586override = "keyword";587return pushContext(state, stream, "keyframes");588}589}590if (/@(font-face|media|supports|(-moz-)?document)/.test(type)) {591return pushContext(state, stream, endOfLine(stream) ? "block" : "atBlock");592}593if (type == "mixin") {594return pushContext(state, stream, "block", 0);595}596return state.context.type;597};598
599
600/**601* Interpolation
602*/
603states.interpolation = function(type, stream, state) {604if (type == "{") popContext(state) && pushContext(state, stream, "block");605if (type == "}") {606if (stream.string.match(/^\s*(\.|#|:|\[|\*|&|>|~|\+|\/)/i) ||607(stream.string.match(/^\s*[a-z]/i) && wordIsTag(firstWordOfLine(stream)))) {608return pushContext(state, stream, "block");609}610if (!stream.string.match(/^(\{|\s*\&)/) ||611stream.match(/\s*[\w-]/,false)) {612return pushContext(state, stream, "block", 0);613}614return pushContext(state, stream, "block");615}616if (type == "variable-name") {617return pushContext(state, stream, "variableName", 0);618}619if (type == "word") {620override = wordAsValue(stream.current());621if (override == "tag") override = "atom";622}623return state.context.type;624};625
626
627/**628* Extend/s
629*/
630states.extend = function(type, stream, state) {631if (type == "[" || type == "=") return "extend";632if (type == "]") return popContext(state);633if (type == "word") {634override = wordAsValue(stream.current());635return "extend";636}637return popContext(state);638};639
640
641/**642* Variable name
643*/
644states.variableName = function(type, stream, state) {645if (type == "string" || type == "[" || type == "]" || stream.current().match(/^(\.|\$)/)) {646if (stream.current().match(/^\.[\w-]+/i)) override = "variable-2";647return "variableName";648}649return popAndPass(type, stream, state);650};651
652
653return {654startState: function(base) {655return {656tokenize: null,657state: "block",658context: new Context("block", base || 0, null)659};660},661token: function(stream, state) {662if (!state.tokenize && stream.eatSpace()) return null;663style = (state.tokenize || tokenBase)(stream, state);664if (style && typeof style == "object") {665type = style[1];666style = style[0];667}668override = style;669state.state = states[state.state](type, stream, state);670return override;671},672indent: function(state, textAfter, line) {673
674var cx = state.context,675ch = textAfter && textAfter.charAt(0),676indent = cx.indent,677lineFirstWord = firstWordOfLine(textAfter),678lineIndent = line.match(/^\s*/)[0].replace(/\t/g, indentUnitString).length,679prevLineFirstWord = state.context.prev ? state.context.prev.line.firstWord : "",680prevLineIndent = state.context.prev ? state.context.prev.line.indent : lineIndent;681
682if (cx.prev &&683(ch == "}" && (cx.type == "block" || cx.type == "atBlock" || cx.type == "keyframes") ||684ch == ")" && (cx.type == "parens" || cx.type == "atBlock_parens") ||685ch == "{" && (cx.type == "at"))) {686indent = cx.indent - indentUnit;687} else if (!(/(\})/.test(ch))) {688if (/@|\$|\d/.test(ch) ||689/^\{/.test(textAfter) ||690/^\s*\/(\/|\*)/.test(textAfter) ||691/^\s*\/\*/.test(prevLineFirstWord) ||692/^\s*[\w-\.\[\]\'\"]+\s*(\?|:|\+)?=/i.test(textAfter) ||693/^(\+|-)?[a-z][\w-]*\(/i.test(textAfter) ||694/^return/.test(textAfter) ||695wordIsBlock(lineFirstWord)) {696indent = lineIndent;697} else if (/(\.|#|:|\[|\*|&|>|~|\+|\/)/.test(ch) || wordIsTag(lineFirstWord)) {698if (/\,\s*$/.test(prevLineFirstWord)) {699indent = prevLineIndent;700} else if (/^\s+/.test(line) && (/(\.|#|:|\[|\*|&|>|~|\+|\/)/.test(prevLineFirstWord) || wordIsTag(prevLineFirstWord))) {701indent = lineIndent <= prevLineIndent ? prevLineIndent : prevLineIndent + indentUnit;702} else {703indent = lineIndent;704}705} else if (!/,\s*$/.test(line) && (wordIsVendorPrefix(lineFirstWord) || wordIsProperty(lineFirstWord))) {706if (wordIsBlock(prevLineFirstWord)) {707indent = lineIndent <= prevLineIndent ? prevLineIndent : prevLineIndent + indentUnit;708} else if (/^\{/.test(prevLineFirstWord)) {709indent = lineIndent <= prevLineIndent ? lineIndent : prevLineIndent + indentUnit;710} else if (wordIsVendorPrefix(prevLineFirstWord) || wordIsProperty(prevLineFirstWord)) {711indent = lineIndent >= prevLineIndent ? prevLineIndent : lineIndent;712} else if (/^(\.|#|:|\[|\*|&|@|\+|\-|>|~|\/)/.test(prevLineFirstWord) ||713/=\s*$/.test(prevLineFirstWord) ||714wordIsTag(prevLineFirstWord) ||715/^\$[\w-\.\[\]\'\"]/.test(prevLineFirstWord)) {716indent = prevLineIndent + indentUnit;717} else {718indent = lineIndent;719}720}721}722return indent;723},724electricChars: "}",725blockCommentStart: "/*",726blockCommentEnd: "*/",727blockCommentContinue: " * ",728lineComment: "//",729fold: "indent"730};731});732
733// developer.mozilla.org/en-US/docs/Web/HTML/Element734var tagKeywords_ = ["a","abbr","address","area","article","aside","audio", "b", "base","bdi", "bdo","bgsound","blockquote","body","br","button","canvas","caption","cite", "code","col","colgroup","data","datalist","dd","del","details","dfn","div", "dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1", "h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe", "img","input","ins","kbd","keygen","label","legend","li","link","main","map", "mark","marquee","menu","menuitem","meta","meter","nav","nobr","noframes", "noscript","object","ol","optgroup","option","output","p","param","pre", "progress","q","rp","rt","ruby","s","samp","script","section","select", "small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","track", "u","ul","var","video"];735
736// github.com/codemirror/CodeMirror/blob/master/mode/css/css.js737// Note, "url-prefix" should precede "url" in order to match correctly in documentTypesRegexp738var documentTypes_ = ["domain", "regexp", "url-prefix", "url"];739var mediaTypes_ = ["all","aural","braille","handheld","print","projection","screen","tty","tv","embossed"];740var mediaFeatures_ = ["width","min-width","max-width","height","min-height","max-height","device-width","min-device-width","max-device-width","device-height","min-device-height","max-device-height","aspect-ratio","min-aspect-ratio","max-aspect-ratio","device-aspect-ratio","min-device-aspect-ratio","max-device-aspect-ratio","color","min-color","max-color","color-index","min-color-index","max-color-index","monochrome","min-monochrome","max-monochrome","resolution","min-resolution","max-resolution","scan","grid","dynamic-range","video-dynamic-range"];741var propertyKeywords_ = ["align-content","align-items","align-self","alignment-adjust","alignment-baseline","anchor-point","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","appearance","azimuth","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","baseline-shift","binding","bleed","bookmark-label","bookmark-level","bookmark-state","bookmark-target","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","color","color-profile","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","crop","cue","cue-after","cue-before","cursor","direction","display","dominant-baseline","drop-initial-after-adjust","drop-initial-after-align","drop-initial-before-adjust","drop-initial-before-align","drop-initial-size","drop-initial-value","elevation","empty-cells","fit","fit-position","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","float-offset","flow-from","flow-into","font","font-feature-settings","font-family","font-kerning","font-language-override","font-size","font-size-adjust","font-stretch","font-style","font-synthesis","font-variant","font-variant-alternates","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-weight","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-position","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","inline-box-align","justify-content","left","letter-spacing","line-break","line-height","line-stacking","line-stacking-ruby","line-stacking-shift","line-stacking-strategy","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marker-offset","marks","marquee-direction","marquee-loop","marquee-play-count","marquee-speed","marquee-style","max-height","max-width","min-height","min-width","move-to","nav-down","nav-index","nav-left","nav-right","nav-up","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-style","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page","page-break-after","page-break-before","page-break-inside","page-policy","pause","pause-after","pause-before","perspective","perspective-origin","pitch","pitch-range","play-during","position","presentation-level","punctuation-trim","quotes","region-break-after","region-break-before","region-break-inside","region-fragment","rendering-intent","resize","rest","rest-after","rest-before","richness","right","rotation","rotation-point","ruby-align","ruby-overhang","ruby-position","ruby-span","shape-image-threshold","shape-inside","shape-margin","shape-outside","size","speak","speak-as","speak-header","speak-numeral","speak-punctuation","speech-rate","stress","string-set","tab-size","table-layout","target","target-name","target-new","target-position","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-skip","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-height","text-indent","text-justify","text-outline","text-overflow","text-shadow","text-size-adjust","text-space-collapse","text-transform","text-underline-position","text-wrap","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","z-index","clip-path","clip-rule","mask","enable-background","filter","flood-color","flood-opacity","lighting-color","stop-color","stop-opacity","pointer-events","color-interpolation","color-interpolation-filters","color-rendering","fill","fill-opacity","fill-rule","image-rendering","marker","marker-end","marker-mid","marker-start","shape-rendering","stroke","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","text-rendering","baseline-shift","dominant-baseline","glyph-orientation-horizontal","glyph-orientation-vertical","text-anchor","writing-mode","font-smoothing","osx-font-smoothing"];742var nonStandardPropertyKeywords_ = ["scrollbar-arrow-color","scrollbar-base-color","scrollbar-dark-shadow-color","scrollbar-face-color","scrollbar-highlight-color","scrollbar-shadow-color","scrollbar-3d-light-color","scrollbar-track-color","shape-inside","searchfield-cancel-button","searchfield-decoration","searchfield-results-button","searchfield-results-decoration","zoom"];743var fontProperties_ = ["font-family","src","unicode-range","font-variant","font-feature-settings","font-stretch","font-weight","font-style"];744var colorKeywords_ = ["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","grey","green","greenyellow","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"];745var valueKeywords_ = ["above","absolute","activeborder","additive","activecaption","afar","after-white-space","ahead","alias","all","all-scroll","alphabetic","alternate","always","amharic","amharic-abegede","antialiased","appworkspace","arabic-indic","armenian","asterisks","attr","auto","avoid","avoid-column","avoid-page","avoid-region","background","backwards","baseline","below","bidi-override","binary","bengali","blink","block","block-axis","bold","bolder","border","border-box","both","bottom","break","break-all","break-word","bullets","button","button-bevel","buttonface","buttonhighlight","buttonshadow","buttontext","calc","cambodian","capitalize","caps-lock-indicator","caption","captiontext","caret","cell","center","checkbox","circle","cjk-decimal","cjk-earthly-branch","cjk-heavenly-stem","cjk-ideographic","clear","clip","close-quote","col-resize","collapse","column","compact","condensed","conic-gradient","contain","content","contents","content-box","context-menu","continuous","copy","counter","counters","cover","crop","cross","crosshair","currentcolor","cursive","cyclic","dashed","decimal","decimal-leading-zero","default","default-button","destination-atop","destination-in","destination-out","destination-over","devanagari","disc","discard","disclosure-closed","disclosure-open","document","dot-dash","dot-dot-dash","dotted","double","down","e-resize","ease","ease-in","ease-in-out","ease-out","element","ellipse","ellipsis","embed","end","ethiopic","ethiopic-abegede","ethiopic-abegede-am-et","ethiopic-abegede-gez","ethiopic-abegede-ti-er","ethiopic-abegede-ti-et","ethiopic-halehame-aa-er","ethiopic-halehame-aa-et","ethiopic-halehame-am-et","ethiopic-halehame-gez","ethiopic-halehame-om-et","ethiopic-halehame-sid-et","ethiopic-halehame-so-et","ethiopic-halehame-ti-er","ethiopic-halehame-ti-et","ethiopic-halehame-tig","ethiopic-numeric","ew-resize","expanded","extends","extra-condensed","extra-expanded","fantasy","fast","fill","fixed","flat","flex","footnotes","forwards","from","geometricPrecision","georgian","graytext","groove","gujarati","gurmukhi","hand","hangul","hangul-consonant","hebrew","help","hidden","hide","high","higher","highlight","highlighttext","hiragana","hiragana-iroha","horizontal","hsl","hsla","icon","ignore","inactiveborder","inactivecaption","inactivecaptiontext","infinite","infobackground","infotext","inherit","initial","inline","inline-axis","inline-block","inline-flex","inline-table","inset","inside","intrinsic","invert","italic","japanese-formal","japanese-informal","justify","kannada","katakana","katakana-iroha","keep-all","khmer","korean-hangul-formal","korean-hanja-formal","korean-hanja-informal","landscape","lao","large","larger","left","level","lighter","line-through","linear","linear-gradient","lines","list-item","listbox","listitem","local","logical","loud","lower","lower-alpha","lower-armenian","lower-greek","lower-hexadecimal","lower-latin","lower-norwegian","lower-roman","lowercase","ltr","malayalam","match","matrix","matrix3d","media-controls-background","media-current-time-display","media-fullscreen-button","media-mute-button","media-play-button","media-return-to-realtime-button","media-rewind-button","media-seek-back-button","media-seek-forward-button","media-slider","media-sliderthumb","media-time-remaining-display","media-volume-slider","media-volume-slider-container","media-volume-sliderthumb","medium","menu","menulist","menulist-button","menulist-text","menulist-textfield","menutext","message-box","middle","min-intrinsic","mix","mongolian","monospace","move","multiple","myanmar","n-resize","narrower","ne-resize","nesw-resize","no-close-quote","no-drop","no-open-quote","no-repeat","none","normal","not-allowed","nowrap","ns-resize","numbers","numeric","nw-resize","nwse-resize","oblique","octal","open-quote","optimizeLegibility","optimizeSpeed","oriya","oromo","outset","outside","outside-shape","overlay","overline","padding","padding-box","painted","page","paused","persian","perspective","plus-darker","plus-lighter","pointer","polygon","portrait","pre","pre-line","pre-wrap","preserve-3d","progress","push-button","radial-gradient","radio","read-only","read-write","read-write-plaintext-only","rectangle","region","relative","repeat","repeating-linear-gradient","repeating-radial-gradient","repeating-conic-gradient","repeat-x","repeat-y","reset","reverse","rgb","rgba","ridge","right","rotate","rotate3d","rotateX","rotateY","rotateZ","round","row-resize","rtl","run-in","running","s-resize","sans-serif","scale","scale3d","scaleX","scaleY","scaleZ","scroll","scrollbar","scroll-position","se-resize","searchfield","searchfield-cancel-button","searchfield-decoration","searchfield-results-button","searchfield-results-decoration","semi-condensed","semi-expanded","separate","serif","show","sidama","simp-chinese-formal","simp-chinese-informal","single","skew","skewX","skewY","skip-white-space","slide","slider-horizontal","slider-vertical","sliderthumb-horizontal","sliderthumb-vertical","slow","small","small-caps","small-caption","smaller","solid","somali","source-atop","source-in","source-out","source-over","space","spell-out","square","square-button","standard","start","static","status-bar","stretch","stroke","sub","subpixel-antialiased","super","sw-resize","symbolic","symbols","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group","tamil","telugu","text","text-bottom","text-top","textarea","textfield","thai","thick","thin","threeddarkshadow","threedface","threedhighlight","threedlightshadow","threedshadow","tibetan","tigre","tigrinya-er","tigrinya-er-abegede","tigrinya-et","tigrinya-et-abegede","to","top","trad-chinese-formal","trad-chinese-informal","translate","translate3d","translateX","translateY","translateZ","transparent","ultra-condensed","ultra-expanded","underline","up","upper-alpha","upper-armenian","upper-greek","upper-hexadecimal","upper-latin","upper-norwegian","upper-roman","uppercase","urdu","url","var","vertical","vertical-text","visible","visibleFill","visiblePainted","visibleStroke","visual","w-resize","wait","wave","wider","window","windowframe","windowtext","words","x-large","x-small","xor","xx-large","xx-small","bicubic","optimizespeed","grayscale","row","row-reverse","wrap","wrap-reverse","column-reverse","flex-start","flex-end","space-between","space-around", "unset"];746
747var wordOperatorKeywords_ = ["in","and","or","not","is not","is a","is","isnt","defined","if unless"],748blockKeywords_ = ["for","if","else","unless", "from", "to"],749commonAtoms_ = ["null","true","false","href","title","type","not-allowed","readonly","disabled"],750commonDef_ = ["@font-face", "@keyframes", "@media", "@viewport", "@page", "@host", "@supports", "@block", "@css"];751
752var hintWords = tagKeywords_.concat(documentTypes_,mediaTypes_,mediaFeatures_,753propertyKeywords_,nonStandardPropertyKeywords_,754colorKeywords_,valueKeywords_,fontProperties_,755wordOperatorKeywords_,blockKeywords_,756commonAtoms_,commonDef_);757
758function wordRegexp(words) {759words = words.sort(function(a,b){return b > a;});760return new RegExp("^((" + words.join(")|(") + "))\\b");761}762
763function keySet(array) {764var keys = {};765for (var i = 0; i < array.length; ++i) keys[array[i]] = true;766return keys;767}768
769function escapeRegExp(text) {770return text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");771}772
773CodeMirror.registerHelper("hintWords", "stylus", hintWords);774CodeMirror.defineMIME("text/x-styl", "stylus");775});776