mirror of
https://github.com/danog/telegram-tt.git
synced 2024-11-27 04:45:08 +01:00
1 line
5.1 KiB
Plaintext
1 line
5.1 KiB
Plaintext
|
{"version":3,"file":"5474.aedf972792d2c11b7940.js","mappings":"sFAkGAA,EAAOC,QAxFP,SAAmBC,GAajB,MAAO,CACLC,KAAM,YACNC,QAAS,CACP,KACA,OAEFC,SAEE,6iCAeFC,SAAU,CAERJ,EAAKK,QAAQ,IAAK,IAAK,CAAEC,UAAW,IAEpC,CACEC,UAAW,WACXC,MAAO,yCACPC,IAAK,MACLC,YAAY,EACZC,aAAa,EACbP,SAAU,CACR,CACEG,UAAW,UACXC,MAAO,mCACPE,YAAY,GAEd,CACEH,UAAW,OACXC,MAAO,WAGTR,EAAKY,wBAxDG,CACdL,UAAW,SACXC,MAAO,QACPC,IAAK,IACLI,QAAS,OAEO,CAEhBN,UAAW,SACXC,MAAO","sources":["webpack://telegram-t/./node_modules/highlight.js/lib/languages/purebasic.js"],"sourcesContent":["/*\nLanguage: PureBASIC\nAuthor: Tristano Ajmone <tajmone@gmail.com>\nDescription: Syntax highlighting for PureBASIC (v.5.00-5.60). No inline ASM highlighting. (v.1.2, May 2017)\nCredits: I've taken inspiration from the PureBasic language file for GeSHi, created by Gustavo Julio Fiorenza (GuShH).\nWebsite: https://www.purebasic.com\n*/\n\n// Base deafult colors in PB IDE: background: #FFFFDF; foreground: #000000;\n\nfunction purebasic(hljs) {\n const STRINGS = { // PB IDE color: #0080FF (Azure Radiance)\n className: 'string',\n begin: '(~)?\"',\n end: '\"',\n illegal: '\\\\n'\n };\n const CONSTANTS = { // PB IDE color: #924B72 (Cannon Pink)\n // \"#\" + a letter or underscore + letters, digits or underscores + (optional) \"$\"\n className: 'symbol',\n begin: '#[a-zA-Z_]\\\\w*\\\\$?'\n };\n\n return {\n name: 'PureBASIC',\n aliases: [\n 'pb',\n 'pbi'\n ],\n keywords: // PB IDE color: #006666 (Blue Stone) + Bold\n // Keywords from all version of PureBASIC 5.00 upward ...\n 'Align And Array As Break CallDebugger Case CompilerCase CompilerDefault '\n + 'CompilerElse CompilerElseIf CompilerEndIf CompilerEndSelect CompilerError '\n + 'CompilerIf CompilerSelect CompilerWarning Continue Data DataSection Debug '\n + 'DebugLevel Declare DeclareC DeclareCDLL DeclareDLL DeclareModule Default '\n + 'Define Dim DisableASM DisableDebugger DisableExplicit Else ElseIf EnableASM '\n + 'EnableDebugger EnableExplicit End EndDataSection EndDeclareModule EndEnumeration '\n + 'EndIf EndImport EndInterface EndMacro EndModule EndProcedure EndSelect '\n + 'EndStructure EndStructureUnion EndWith Enumeration EnumerationBinary Extends '\n + 'FakeReturn For ForEach ForEver Global Gosub Goto If Import ImportC '\n + 'IncludeBinary IncludeFile IncludePath Interface List Macro MacroExpandedCount '\n + 'Map Module NewList NewMap Next Not Or Procedure ProcedureC '\n + 'ProcedureCDLL ProcedureDLL ProcedureReturn Protected Prototype PrototypeC ReDim '\n + 'Read Repeat Restore Return Runtime Select Shared Static Step Structure '\n + 'StructureUnion Swap Threaded To UndefineMacro Until Until UnuseModule '\n + 'UseModule Wend While With XIncludeFile XOr',\n contains: [\n // COMMENTS | PB IDE color: #00AAAA (Persian Green)\n hljs.COMMENT(';', '$', { relevance: 0 }),\n\n { // PROCEDURES DEFINITIONS\n className: 'function',\n begin: '\\\\b(Procedure|Declare)(C|CDLL|DLL)?\\\\b',\n end: '\\\\(',\n excludeEnd: true,\n returnBegin: true,\n contains: [\n { // PROCEDURE KEYWORDS | PB IDE color: #006666 (Blue Stone) + Bold\n className: 'keyword',\n begin: '(Procedure|Declare)(C|CDLL|DLL)?',\n excludeEnd: true\n },\n { // PROCEDURE RETURN TYPE SETTING | PB IDE color: #000000 (Black)\n className: 'type',\n begin: '\\\\.\\\\w*'\n // end: ' ',\n },\n hljs.UNDERSCORE_TITLE_MODE // PROCEDURE NAME | PB IDE color: #006666 (Blue Stone)\n ]\n },\n STRINGS,\n CONSTANTS\n ]\n };\n}\n\n/* ==============================================================================\n CHANGELOG\n ==============================================================================\n - v.1.2 (2017-05-12)\n -- BUG-FIX: Some keywords were accidentally joyned together. Now fixed.\n - v.1.1 (2017-04-30)\n
|