openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

clike.min.js (18607B)


      1 (function(e){if(typeof exports=='object'&&typeof module=='object')e(require('../../lib/codemirror'));else if(typeof define=='function'&&define.amd)define(['../../lib/codemirror'],e);else e(CodeMirror)})(function(t){'use strict';function d(e,t,n,r,i,a){this.indented=e;this.column=t;this.type=n;this.info=r;this.align=i;this.prev=a};function u(e,t,n,r){var i=e.indented;if(e.context&&e.context.type=='statement'&&n!='statement')i=e.context.indented;return e.context=new d(i,t,n,r,null,e.context)};function l(e){var t=e.context.type;if(t==')'||t==']'||t=='}')e.indented=e.context.indented;return e.context=e.context.prev};function p(e,t,n){if(t.prevToken=='variable'||t.prevToken=='type')return!0;if(/\S(?:[^- ]>|[*\]])\s*$|\*$/.test(e.string.slice(0,n)))return!0;if(t.typeAtEndOfLine&&e.column()==e.indentation())return!0};function m(e){for(;;){if(!e||e.type=='top')return!0;if(e.type=='}'&&e.prev.info!='namespace')return!1;e=e.prev}};t.defineMode('clike',function(n,e){var o=n.indentUnit,c=e.statementIndentUnit||o,k=e.dontAlignCalls,v=e.keywords||{},S=e.types||{},C=e.builtin||{},f=e.blockKeywords||{},T=e.defKeywords||{},M=e.atoms||{},a=e.hooks||{},P=e.multiLineStrings,D=e.indentStatements!==!1,L=e.indentSwitch!==!1,h=e.namespaceSeparator,I=e.isPunctuationChar||/[\[\]{}\(\),;\:\.]/,F=e.numberStart||/[\d\.]/,z=e.number||/^(?:0x[a-f\d]+|0b[01]+|(?:\d+\.?\d*|\.\d+)(?:e[-+]?\d+)?)(u|ll?|l|f)?/i,g=e.isOperatorChar||/[+\-*&%=<>!?|\/]/,y=e.isIdentifierChar||/[\w\$_\xa1-\uffff]/;var r,s;function x(e,t){var n=e.next();if(a[n]){var l=a[n](e,t);if(l!==!1)return l};if(n=='"'||n=='\''){t.tokenize=j(n);return t.tokenize(e,t)};if(I.test(n)){r=n;return null};if(F.test(n)){e.backUp(1);if(e.match(z))return'number';e.next()};if(n=='/'){if(e.eat('*')){t.tokenize=w;return w(e,t)};if(e.eat('/')){e.skipToEnd();return'comment'}};if(g.test(n)){while(!e.match(/^\/[\/*]/,!1)&&e.eat(g)){};return'operator'};e.eatWhile(y);if(h)while(e.match(h))e.eatWhile(y);var o=e.current();if(i(v,o)){if(i(f,o))r='newstatement';if(i(T,o))s=!0;return'keyword'};if(i(S,o))return'type';if(i(C,o)){if(i(f,o))r='newstatement';return'builtin'};if(i(M,o))return'atom';return'variable'};function j(e){return function(t,n){var r=!1,i,a=!1;while((i=t.next())!=null){if(i==e&&!r){a=!0;break};r=!r&&i=='\\'};if(a||!(r||P))n.tokenize=null;return'string'}};function w(e,t){var r=!1,n;while(n=e.next()){if(n=='/'&&r){t.tokenize=null;break};r=(n=='*')};return'comment'};function b(t,n){if(e.typeFirstDefinitions&&t.eol()&&m(n.context))n.typeAtEndOfLine=p(t,n,t.pos)};return{startState:function(e){return{tokenize:null,context:new d((e||0)-o,0,'top',null,!1),indented:0,startOfLine:!0,prevToken:null}},token:function(t,n){var i=n.context;if(t.sol()){if(i.align==null)i.align=!1;n.indented=t.indentation();n.startOfLine=!0};if(t.eatSpace()){b(t,n);return null};r=s=null;var o=(n.tokenize||x)(t,n);if(o=='comment'||o=='meta')return o;if(i.align==null)i.align=!0;if(r==';'||r==':'||(r==','&&t.match(/^\s*(?:\/\/.*)?$/,!1)))while(n.context.type=='statement')l(n);else if(r=='{')u(n,t.column(),'}');else if(r=='[')u(n,t.column(),']');else if(r=='(')u(n,t.column(),')');else if(r=='}'){while(i.type=='statement')i=l(n);if(i.type=='}')i=l(n);while(i.type=='statement')i=l(n)}
      2 else if(r==i.type)l(n);else if(D&&(((i.type=='}'||i.type=='top')&&r!=';')||(i.type=='statement'&&r=='newstatement'))){u(n,t.column(),'statement',t.current())};if(o=='variable'&&((n.prevToken=='def'||(e.typeFirstDefinitions&&p(t,n,t.start)&&m(n.context)&&t.match(/^\s*\(/,!1)))))o='def';if(a.token){var c=a.token(t,n,o);if(c!==undefined)o=c};if(o=='def'&&e.styleDefs===!1)o='variable';n.startOfLine=!1;n.prevToken=s?'def':o||r;b(t,n);return o},indent:function(n,r){if(n.tokenize!=x&&n.tokenize!=null||n.typeAtEndOfLine)return t.Pass;var i=n.context,s=r&&r.charAt(0);if(i.type=='statement'&&s=='}')i=i.prev;if(e.dontIndentStatements)while(i.type=='statement'&&e.dontIndentStatements.test(i.info))i=i.prev;if(a.indent){var u=a.indent(n,i,r);if(typeof u=='number')return u};var l=s==i.type,f=i.prev&&i.prev.info=='switch';if(e.allmanIndentation&&/[{(]/.test(s)){while(i.type!='top'&&i.type!='}')i=i.prev;return i.indented};if(i.type=='statement')return i.indented+(s=='{'?0:c);if(i.align&&(!k||i.type!=')'))return i.column+(l?0:1);if(i.type==')'&&!l)return i.indented+c;return i.indented+(l?0:o)+(!l&&f&&!/^(?:case|default)\b/.test(r)?o:0)},electricInput:L?/^\s*(?:case .*?:|default:|\{\}?|\})$/:/^\s*[{}]$/,blockCommentStart:'/*',blockCommentEnd:'*/',blockCommentContinue:' * ',lineComment:'//',fold:'brace'}});function e(e){var n={},r=e.split(' ');for(var t=0;t<r.length;++t)n[r[t]]=!0;return n};function i(e,t){if(typeof e==='function'){return e(t)}
      3 else{return e.propertyIsEnumerable(t)}};var c='auto if break case register continue return default do sizeof static else struct switch extern typedef union for goto while enum const volatile',o='int long char short double float unsigned signed void size_t ptrdiff_t';function a(e,t){if(!t.startOfLine)return!1;for(var n,r=null;n=e.peek();){if(n=='\\'&&e.match(/^.$/)){r=a;break}
      4 else if(n=='/'&&e.match(/^\/[\/\*]/,!1)){break};e.next()};t.tokenize=r;return'meta'};function h(e,t){if(t.prevToken=='type')return'type';return!1};function r(e){e.eatWhile(/[\w\.']/);return'number'};function f(e,t){e.backUp(1);if(e.match(/(R|u8R|uR|UR|LR)/)){var n=e.match(/"([^\s\\()]{0,16})\(/);if(!n){return!1};t.cpp11RawStringDelim=n[1];t.tokenize=y;return y(e,t)};if(e.match(/(u8|u|U|L)/)){if(e.match(/["']/,!1)){return'string'};return!1};e.next();return!1};function w(e){var t=/(\w+)::~?(\w+)$/.exec(e);return t&&t[1]==t[2]};function g(e,t){var n;while((n=e.next())!=null){if(n=='"'&&!e.eat('"')){t.tokenize=null;break}};return'string'};function y(e,t){var n=t.cpp11RawStringDelim.replace(/[^\w\s]/g,'\\$&'),r=e.match(new RegExp('.*?\\)'+n+'"'));if(r)t.tokenize=null;else e.skipToEnd();return'string'};function n(e,n){if(typeof e=='string')e=[e];var a=[];function r(e){if(e)for(var t in e)if(e.hasOwnProperty(t))a.push(t)};r(n.keywords);r(n.types);r(n.builtin);r(n.atoms);if(a.length){n.helperType=e[0];t.registerHelper('hintWords',e[0],a)};for(var i=0;i<e.length;++i)t.defineMIME(e[i],n)};n(['text/x-csrc','text/x-c','text/x-chdr'],{name:'clike',keywords:e(c),types:e(o+' bool _Complex _Bool float_t double_t intptr_t intmax_t int8_t int16_t int32_t int64_t uintptr_t uintmax_t uint8_t uint16_t uint32_t uint64_t'),blockKeywords:e('case do else for if switch while struct'),defKeywords:e('struct'),typeFirstDefinitions:!0,atoms:e('null true false'),hooks:{'#':a,'*':h},modeProps:{fold:['brace','include']}});n(['text/x-c++src','text/x-c++hdr'],{name:'clike',keywords:e(c+' asm dynamic_cast namespace reinterpret_cast try explicit new static_cast typeid catch operator template typename class friend private this using const_cast inline public throw virtual delete mutable protected alignas alignof constexpr decltype nullptr noexcept thread_local final static_assert override'),types:e(o+' bool wchar_t'),blockKeywords:e('catch class do else finally for if struct switch try while'),defKeywords:e('class namespace struct enum union'),typeFirstDefinitions:!0,atoms:e('true false null'),dontIndentStatements:/^template$/,isIdentifierChar:/[\w\$_~\xa1-\uffff]/,hooks:{'#':a,'*':h,'u':f,'U':f,'L':f,'R':f,'0':r,'1':r,'2':r,'3':r,'4':r,'5':r,'6':r,'7':r,'8':r,'9':r,token:function(e,t,n){if(n=='variable'&&e.peek()=='('&&(t.prevToken==';'||t.prevToken==null||t.prevToken=='}')&&w(e.current()))return'def'}},namespaceSeparator:'::',modeProps:{fold:['brace','include']}});n('text/x-java',{name:'clike',keywords:e('abstract assert break case catch class const continue default do else enum extends final finally float for goto if implements import instanceof interface native new package private protected public return static strictfp super switch synchronized this throw throws transient try volatile while @interface'),types:e('byte short int long float double boolean char void Boolean Byte Character Double Float Integer Long Number Object Short String StringBuffer StringBuilder Void'),blockKeywords:e('catch class do else finally for if switch try while'),defKeywords:e('class interface enum @interface'),typeFirstDefinitions:!0,atoms:e('true false null'),number:/^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+\.?\d*|\.\d+)(?:e[-+]?[\d_]+)?)(u|ll?|l|f)?/i,hooks:{'@':function(e){if(e.match('interface',!1))return!1;e.eatWhile(/[\w\$_]/);return'meta'}},modeProps:{fold:['brace','import']}});n('text/x-csharp',{name:'clike',keywords:e('abstract as async await base break case catch checked class const continue default delegate do else enum event explicit extern finally fixed for foreach goto if implicit in interface internal is lock namespace new operator out override params private protected public readonly ref return sealed sizeof stackalloc static struct switch this throw try typeof unchecked unsafe using virtual void volatile while add alias ascending descending dynamic from get global group into join let orderby partial remove select set value var yield'),types:e('Action Boolean Byte Char DateTime DateTimeOffset Decimal Double Func Guid Int16 Int32 Int64 Object SByte Single String Task TimeSpan UInt16 UInt32 UInt64 bool byte char decimal double short int long object sbyte float string ushort uint ulong'),blockKeywords:e('catch class do else finally for foreach if struct switch try while'),defKeywords:e('class interface namespace struct var'),typeFirstDefinitions:!0,atoms:e('true false null'),hooks:{'@':function(e,t){if(e.eat('"')){t.tokenize=g;return g(e,t)};e.eatWhile(/[\w\$_]/);return'meta'}}});function b(e,t){var n=!1;while(!e.eol()){if(!n&&e.match('"""')){t.tokenize=null;break};n=e.next()=='\\'&&!n};return'string'};n('text/x-scala',{name:'clike',keywords:e('abstract case catch class def do else extends final finally for forSome if implicit import lazy match new null object override package private protected return sealed super this throw trait try type val var while with yield _ assert assume require print println printf readLine readBoolean readByte readShort readChar readInt readLong readFloat readDouble'),types:e('AnyVal App Application Array BufferedIterator BigDecimal BigInt Char Console Either Enumeration Equiv Error Exception Fractional Function IndexedSeq Int Integral Iterable Iterator List Map Numeric Nil NotNull Option Ordered Ordering PartialFunction PartialOrdering Product Proxy Range Responder Seq Serializable Set Specializable Stream StringBuilder StringContext Symbol Throwable Traversable TraversableOnce Tuple Unit Vector Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable Compiler Double Exception Float Integer Long Math Number Object Package Pair Process Runtime Runnable SecurityManager Short StackTraceElement StrictMath String StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void'),multiLineStrings:!0,blockKeywords:e('catch class enum do else finally for forSome if match switch try while'),defKeywords:e('class enum def object package trait type val var'),atoms:e('true false null'),indentStatements:!1,indentSwitch:!1,isOperatorChar:/[+\-*&%=<>!?|\/#:@]/,hooks:{'@':function(e){e.eatWhile(/[\w\$_]/);return'meta'},'"':function(e,t){if(!e.match('""'))return!1;t.tokenize=b;return t.tokenize(e,t)},'\'':function(e){e.eatWhile(/[\w\$_\xa1-\uffff]/);return'atom'},'=':function(e,t){var n=t.context;if(n.type=='}'&&n.align&&e.eat('>')){t.context=new d(n.indented,n.column,n.type,n.info,null,n.prev);return'operator'}
      5 else{return!1}}},modeProps:{closeBrackets:{triples:'"'}}});function k(e){return function(t,n){var r=!1,i,a=!1;while(!t.eol()){if(!e&&!r&&t.match('"')){a=!0;break};if(e&&t.match('"""')){a=!0;break};i=t.next();if(!r&&i=='$'&&t.match('{'))t.skipTo('}');r=!r&&i=='\\'&&!e};if(a||!e)n.tokenize=null;return'string'}};n('text/x-kotlin',{name:'clike',keywords:e('package as typealias class interface this super val var fun for is in This throw return break continue object if else while do try when !in !is as? file import where by get set abstract enum open inner override private public internal protected catch finally out final vararg reified dynamic companion constructor init sealed field property receiver param sparam lateinit data inline noinline tailrec external annotation crossinline const operator infix suspend'),types:e('Boolean Byte Character CharSequence Class ClassLoader Cloneable Comparable Compiler Double Exception Float Integer Long Math Number Object Package Pair Process Runtime Runnable SecurityManager Short StackTraceElement StrictMath String StringBuffer System Thread ThreadGroup ThreadLocal Throwable Triple Void'),intendSwitch:!1,indentStatements:!1,multiLineStrings:!0,number:/^(?:0x[a-f\d_]+|0b[01_]+|(?:[\d_]+\.?\d*|\.\d+)(?:e[-+]?[\d_]+)?)(u|ll?|l|f)?/i,blockKeywords:e('catch class do else finally for if where try while enum'),defKeywords:e('class val var object interface fun'),atoms:e('true false null this'),hooks:{'"':function(e,t){t.tokenize=k(e.match('""'));return t.tokenize(e,t)}},modeProps:{closeBrackets:{triples:'"'}}});n(['x-shader/x-vertex','x-shader/x-fragment'],{name:'clike',keywords:e('sampler1D sampler2D sampler3D samplerCube sampler1DShadow sampler2DShadow const attribute uniform varying break continue discard return for while do if else struct in out inout'),types:e('float int bool void vec2 vec3 vec4 ivec2 ivec3 ivec4 bvec2 bvec3 bvec4 mat2 mat3 mat4'),blockKeywords:e('for while do if else struct'),builtin:e('radians degrees sin cos tan asin acos atan pow exp log exp2 sqrt inversesqrt abs sign floor ceil fract mod min max clamp mix step smoothstep length distance dot cross normalize ftransform faceforward reflect refract matrixCompMult lessThan lessThanEqual greaterThan greaterThanEqual equal notEqual any all not texture1D texture1DProj texture1DLod texture1DProjLod texture2D texture2DProj texture2DLod texture2DProjLod texture3D texture3DProj texture3DLod texture3DProjLod textureCube textureCubeLod shadow1D shadow2D shadow1DProj shadow2DProj shadow1DLod shadow2DLod shadow1DProjLod shadow2DProjLod dFdx dFdy fwidth noise1 noise2 noise3 noise4'),atoms:e('true false gl_FragColor gl_SecondaryColor gl_Normal gl_Vertex gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_FogCoord gl_PointCoord gl_Position gl_PointSize gl_ClipVertex gl_FrontColor gl_BackColor gl_FrontSecondaryColor gl_BackSecondaryColor gl_TexCoord gl_FogFragCoord gl_FragCoord gl_FrontFacing gl_FragData gl_FragDepth gl_ModelViewMatrix gl_ProjectionMatrix gl_ModelViewProjectionMatrix gl_TextureMatrix gl_NormalMatrix gl_ModelViewMatrixInverse gl_ProjectionMatrixInverse gl_ModelViewProjectionMatrixInverse gl_TexureMatrixTranspose gl_ModelViewMatrixInverseTranspose gl_ProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixInverseTranspose gl_TextureMatrixInverseTranspose gl_NormalScale gl_DepthRange gl_ClipPlane gl_Point gl_FrontMaterial gl_BackMaterial gl_LightSource gl_LightModel gl_FrontLightModelProduct gl_BackLightModelProduct gl_TextureColor gl_EyePlaneS gl_EyePlaneT gl_EyePlaneR gl_EyePlaneQ gl_FogParameters gl_MaxLights gl_MaxClipPlanes gl_MaxTextureUnits gl_MaxTextureCoords gl_MaxVertexAttribs gl_MaxVertexUniformComponents gl_MaxVaryingFloats gl_MaxVertexTextureImageUnits gl_MaxTextureImageUnits gl_MaxFragmentUniformComponents gl_MaxCombineTextureImageUnits gl_MaxDrawBuffers'),indentSwitch:!1,hooks:{'#':a},modeProps:{fold:['brace','include']}});n('text/x-nesc',{name:'clike',keywords:e(c+'as atomic async call command component components configuration event generic implementation includes interface module new norace nx_struct nx_union post provides signal task uses abstract extends'),types:e(o),blockKeywords:e('case do else for if switch while struct'),atoms:e('null true false'),hooks:{'#':a},modeProps:{fold:['brace','include']}});n('text/x-objectivec',{name:'clike',keywords:e(c+'inline restrict _Bool _Complex _Imaginary BOOL Class bycopy byref id IMP in inout nil oneway out Protocol SEL self super atomic nonatomic retain copy readwrite readonly'),types:e(o),atoms:e('YES NO NULL NILL ON OFF true false'),hooks:{'@':function(e){e.eatWhile(/[\w\$]/);return'keyword'},'#':a,indent:function(e,t,n){if(t.type=='statement'&&/^@\w/.test(n))return t.indented}},modeProps:{fold:'brace'}});n('text/x-squirrel',{name:'clike',keywords:e('base break clone continue const default delete enum extends function in class foreach local resume return this throw typeof yield constructor instanceof static'),types:e(o),blockKeywords:e('case catch class else for foreach if switch try while'),defKeywords:e('function local class'),typeFirstDefinitions:!0,atoms:e('true false null'),hooks:{'#':a},modeProps:{fold:['brace','include']}});var s=null;function x(e){return function(t,n){var r=!1,a,i=!1;while(!t.eol()){if(!r&&t.match('"')&&(e=='single'||t.match('""'))){i=!0;break};if(!r&&t.match('``')){s=x(e);i=!0;break};a=t.next();r=e=='single'&&!r&&a=='\\'};if(i)n.tokenize=null;return'string'}};n('text/x-ceylon',{name:'clike',keywords:e('abstracts alias assembly assert assign break case catch class continue dynamic else exists extends finally for function given if import in interface is let module new nonempty object of out outer package return satisfies super switch then this throw try value void while'),types:function(e){var t=e.charAt(0);return(t===t.toUpperCase()&&t!==t.toLowerCase())},blockKeywords:e('case catch class dynamic else finally for function if interface module new object switch try while'),defKeywords:e('class dynamic function interface module object package value'),builtin:e('abstract actual aliased annotation by default deprecated doc final formal late license native optional sealed see serializable shared suppressWarnings tagged throws variable'),isPunctuationChar:/[\[\]{}\(\),;\:\.`]/,isOperatorChar:/[+\-*&%=<>!?|^~:\/]/,numberStart:/[\d#$]/,number:/^(?:#[\da-fA-F_]+|\$[01_]+|[\d_]+[kMGTPmunpf]?|[\d_]+\.[\d_]+(?:[eE][-+]?\d+|[kMGTPmunpf]|)|)/i,multiLineStrings:!0,typeFirstDefinitions:!0,atoms:e('true false null larger smaller equal empty finished'),indentSwitch:!1,styleDefs:!1,hooks:{'@':function(e){e.eatWhile(/[\w\$_]/);return'meta'},'"':function(e,t){t.tokenize=x(e.match('""')?'triple':'single');return t.tokenize(e,t)},'`':function(e,t){if(!s||!e.match('`'))return!1;t.tokenize=s;s=null;return t.tokenize(e,t)},'\'':function(e){e.eatWhile(/[\w\$_\xa1-\uffff]/);return'atom'},token:function(e,t,n){if((n=='variable'||n=='type')&&t.prevToken=='.'){return'variable-2'}}},modeProps:{fold:['brace','import'],closeBrackets:{triples:'"'}}})});