File manager - Edit - /home/opticamezl/www/newok/commonlisp.zip
Back
PK j��\i�X5� � commonlisp.min.js.gznu �[��� � }VIs�6��W����عt��fr�!�$'Q�ry�Q� �������d;Ӌ��{A�AT�IA8=�es��N*ݧ)��_�4x��ie=p<12N��Ba�a�YU�Ɩ)%PϪ56LX��!x���E[g�H6�6��9�9�$k�2Q�H�y�0�x�k�* ��/�F�l[)8�;�W��� uQ�ю�\V{�Q0 ��D�(ٚ��գᲨ�Z� >��Q�0�T����*81�K[J�E�$Gm���t�P��,�M;p�:> � ��<ȷ�Nɇ{��|6�1�*� ���-Oc� /J��{�8̏Aj�ב?����G���1�Z���2U���UR�צd��¹6���ב���d��6��⼾5y�!�Z6��q-%3�� G眫��6w��[s%�[��k^A����H��.�o�� 4��[H��ϒ%{� =6R[B��C�MhBYCD�B�]��{�` �<�{M�Gˢ���=MJ��~t�����B� W�A_�#k�X�]Q!�tVa)<���dim�n 1�%*Hl��,k�v�z9ѩ���nfm"B-�(�OL{:�h8Av(��R�5,2����sي�!��B�{�}��EM�?#�F ���6�@���T��X�`�w���ed���1y�������=��l�e"#�s@��<�9�iL�����rE���p���]��y�K���CFl�Т.��ΐ9�]I�!�4���'(*�2����n�̉�-]0�ؓ��a�X�?5��.(�l!!/z���M���!UԘa9����,U �kcd�T(V������iz7�����W�:C;*j�bϻ��x��j�7�^j�S.o���邓��+_%���Δ�_�R�_���3���B鯺�� z���>��N�Sl��O���D�B����/�wKq5��r�:°����*�J���e���#�Y��N!���ќ����������I7c��m�77����D������*�[�L~���C+�<kef1��"I�R��\���(�[]���s�ֆ1ә�z��ޔi�8灮{�Uζ�\�l �T�џ<���Q���>�!t�=� 7�ϙ�O�cH���x�`t���lz��B_'�pe^�?�:s�H�����4tt�#(p���'i��?�B� PK j��\�ҽ�� � commonlisp.jsnu �[��� // CodeMirror, copyright (c) by Marijn Haverbeke and others // Distributed under an MIT license: https://codemirror.net/5/LICENSE (function(mod) { if (typeof exports == "object" && typeof module == "object") // CommonJS mod(require("../../lib/codemirror")); else if (typeof define == "function" && define.amd) // AMD define(["../../lib/codemirror"], mod); else // Plain browser env mod(CodeMirror); })(function(CodeMirror) { "use strict"; CodeMirror.defineMode("commonlisp", function (config) { var specialForm = /^(block|let*|return-from|catch|load-time-value|setq|eval-when|locally|symbol-macrolet|flet|macrolet|tagbody|function|multiple-value-call|the|go|multiple-value-prog1|throw|if|progn|unwind-protect|labels|progv|let|quote)$/; var assumeBody = /^with|^def|^do|^prog|case$|^cond$|bind$|when$|unless$/; var numLiteral = /^(?:[+\-]?(?:\d+|\d*\.\d+)(?:[efd][+\-]?\d+)?|[+\-]?\d+(?:\/[+\-]?\d+)?|#b[+\-]?[01]+|#o[+\-]?[0-7]+|#x[+\-]?[\da-f]+)/; var symbol = /[^\s'`,@()\[\]";]/; var type; function readSym(stream) { var ch; while (ch = stream.next()) { if (ch == "\\") stream.next(); else if (!symbol.test(ch)) { stream.backUp(1); break; } } return stream.current(); } function base(stream, state) { if (stream.eatSpace()) {type = "ws"; return null;} if (stream.match(numLiteral)) return "number"; var ch = stream.next(); if (ch == "\\") ch = stream.next(); if (ch == '"') return (state.tokenize = inString)(stream, state); else if (ch == "(") { type = "open"; return "bracket"; } else if (ch == ")" || ch == "]") { type = "close"; return "bracket"; } else if (ch == ";") { stream.skipToEnd(); type = "ws"; return "comment"; } else if (/['`,@]/.test(ch)) return null; else if (ch == "|") { if (stream.skipTo("|")) { stream.next(); return "symbol"; } else { stream.skipToEnd(); return "error"; } } else if (ch == "#") { var ch = stream.next(); if (ch == "(") { type = "open"; return "bracket"; } else if (/[+\-=\.']/.test(ch)) return null; else if (/\d/.test(ch) && stream.match(/^\d*#/)) return null; else if (ch == "|") return (state.tokenize = inComment)(stream, state); else if (ch == ":") { readSym(stream); return "meta"; } else if (ch == "\\") { stream.next(); readSym(stream); return "string-2" } else return "error"; } else { var name = readSym(stream); if (name == ".") return null; type = "symbol"; if (name == "nil" || name == "t" || name.charAt(0) == ":") return "atom"; if (state.lastType == "open" && (specialForm.test(name) || assumeBody.test(name))) return "keyword"; if (name.charAt(0) == "&") return "variable-2"; return "variable"; } } function inString(stream, state) { var escaped = false, next; while (next = stream.next()) { if (next == '"' && !escaped) { state.tokenize = base; break; } escaped = !escaped && next == "\\"; } return "string"; } function inComment(stream, state) { var next, last; while (next = stream.next()) { if (next == "#" && last == "|") { state.tokenize = base; break; } last = next; } type = "ws"; return "comment"; } return { startState: function () { return {ctx: {prev: null, start: 0, indentTo: 0}, lastType: null, tokenize: base}; }, token: function (stream, state) { if (stream.sol() && typeof state.ctx.indentTo != "number") state.ctx.indentTo = state.ctx.start + 1; type = null; var style = state.tokenize(stream, state); if (type != "ws") { if (state.ctx.indentTo == null) { if (type == "symbol" && assumeBody.test(stream.current())) state.ctx.indentTo = state.ctx.start + config.indentUnit; else state.ctx.indentTo = "next"; } else if (state.ctx.indentTo == "next") { state.ctx.indentTo = stream.column(); } state.lastType = type; } if (type == "open") state.ctx = {prev: state.ctx, start: stream.column(), indentTo: null}; else if (type == "close") state.ctx = state.ctx.prev || state.ctx; return style; }, indent: function (state, _textAfter) { var i = state.ctx.indentTo; return typeof i == "number" ? i : state.ctx.start + 1; }, closeBrackets: {pairs: "()[]{}\"\""}, lineComment: ";;", fold: "brace-paren", blockCommentStart: "#|", blockCommentEnd: "|#" }; }); CodeMirror.defineMIME("text/x-common-lisp", "commonlisp"); }); PK j��\?�B� commonlisp.min.jsnu �[��� (function(l){typeof exports=="object"&&typeof module=="object"?l(require("../../lib/codemirror")):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],l):l(CodeMirror)})(function(l){"use strict";l.defineMode("commonlisp",function(f){var d=/^(block|let*|return-from|catch|load-time-value|setq|eval-when|locally|symbol-macrolet|flet|macrolet|tagbody|function|multiple-value-call|the|go|multiple-value-prog1|throw|if|progn|unwind-protect|labels|progv|let|quote)$/,u=/^with|^def|^do|^prog|case$|^cond$|bind$|when$|unless$/,p=/^(?:[+\-]?(?:\d+|\d*\.\d+)(?:[efd][+\-]?\d+)?|[+\-]?\d+(?:\/[+\-]?\d+)?|#b[+\-]?[01]+|#o[+\-]?[0-7]+|#x[+\-]?[\da-f]+)/,x=/[^\s'`,@()\[\]";]/,i;function o(e){for(var n;n=e.next();)if(n=="\\")e.next();else if(!x.test(n)){e.backUp(1);break}return e.current()}function c(e,n){if(e.eatSpace())return i="ws",null;if(e.match(p))return"number";var t=e.next();if(t=="\\"&&(t=e.next()),t=='"')return(n.tokenize=s)(e,n);if(t=="(")return i="open","bracket";if(t==")"||t=="]")return i="close","bracket";if(t==";")return e.skipToEnd(),i="ws","comment";if(/['`,@]/.test(t))return null;if(t=="|")return e.skipTo("|")?(e.next(),"symbol"):(e.skipToEnd(),"error");if(t=="#"){var t=e.next();return t=="("?(i="open","bracket"):/[+\-=\.']/.test(t)||/\d/.test(t)&&e.match(/^\d*#/)?null:t=="|"?(n.tokenize=b)(e,n):t==":"?(o(e),"meta"):t=="\\"?(e.next(),o(e),"string-2"):"error"}else{var r=o(e);return r=="."?null:(i="symbol",r=="nil"||r=="t"||r.charAt(0)==":"?"atom":n.lastType=="open"&&(d.test(r)||u.test(r))?"keyword":r.charAt(0)=="&"?"variable-2":"variable")}}function s(e,n){for(var t=!1,r;r=e.next();){if(r=='"'&&!t){n.tokenize=c;break}t=!t&&r=="\\"}return"string"}function b(e,n){for(var t,r;t=e.next();){if(t=="#"&&r=="|"){n.tokenize=c;break}r=t}return i="ws","comment"}return{startState:function(){return{ctx:{prev:null,start:0,indentTo:0},lastType:null,tokenize:c}},token:function(e,n){e.sol()&&typeof n.ctx.indentTo!="number"&&(n.ctx.indentTo=n.ctx.start+1),i=null;var t=n.tokenize(e,n);return i!="ws"&&(n.ctx.indentTo==null?i=="symbol"&&u.test(e.current())?n.ctx.indentTo=n.ctx.start+f.indentUnit:n.ctx.indentTo="next":n.ctx.indentTo=="next"&&(n.ctx.indentTo=e.column()),n.lastType=i),i=="open"?n.ctx={prev:n.ctx,start:e.column(),indentTo:null}:i=="close"&&(n.ctx=n.ctx.prev||n.ctx),t},indent:function(e,n){var t=e.ctx.indentTo;return typeof t=="number"?t:e.ctx.start+1},closeBrackets:{pairs:'()[]{}""'},lineComment:";;",fold:"brace-paren",blockCommentStart:"#|",blockCommentEnd:"|#"}}),l.defineMIME("text/x-common-lisp","commonlisp")}); PK j��\i�X5� � commonlisp.min.js.gznu �[��� PK j��\�ҽ�� � � commonlisp.jsnu �[��� PK j��\?�B� ) commonlisp.min.jsnu �[��� PK � o!
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0 |
proxy
|
phpinfo
|
Settings