mirror of
https://github.com/danog/telegram-tt.git
synced 2024-12-03 10:07:55 +01:00
1 line
10 KiB
Plaintext
1 line
10 KiB
Plaintext
|
{"version":3,"file":"9606.f9fa653821fc0f019fad.js","mappings":"sFAgQAA,EAAOC,QAtPP,SAAWC,GACT,MAAMC,EAAQD,EAAKC,MAObC,EAAW,uDACXC,EAAkBF,EAAMG,OAE5B,gDAEA,0CAEA,iDAEIC,EAAe,mEACfC,EAAiBL,EAAMG,OAC3B,OACA,OACA,OACA,QACA,KACA,KAGF,MAAO,CACLG,KAAM,IAENC,SAAU,CACRC,SAAUP,EACVQ,QACE,kDACFC,QACE,wFAEFC,SAEE,khCAuBJC,SAAU,CAERb,EAAKc,QACH,KACA,IACA,CAAED,SAAU,CACV,CAMEE,MAAO,SACPC,MAAO,YACPC,OAAQ,CACNC,IAAKjB,EAAMkB,UAAUlB,EAAMG,OAEzB,yBAEA,cAEFgB,YAAY,IAGhB,CAGEL,MAAO,SACPM,MAAO,SACPH,IAAK,IACLL,SAAU,CACR,CACEE,MAAO,WACPO,SAAU,CACR,CAAEN,MAAOd,GACT,CAAEc,MAAO,sBAEXI,YAAY,KAIlB,CACEL,MAAO,SACPC,MAAO,cAET,CACED,MAAO,UACPC,MAAO,kBAKbhB,EAAKuB,kBAEL,CACER,MAAO,SACPF,SAAU,CAAEb,EAAKwB,kBACjBF,SAAU,CACRtB,EAAKyB,kBAAkB,CACrBJ,MAAO,cACPH,IAAK,YAEPlB,EAAKyB,kBAAkB,CACrBJ,MAAO,cACPH,IAAK,YAEPlB,EAAKyB,kBAAkB,CACrBJ,MAAO,cACPH,IAAK,YAEPlB,EAAKyB,kBAAkB,CACrBJ,MAAO,cACPH,IAAK,YAEPlB,EAAKyB,kBAAkB,CACrBJ,MAAO,cACPH,IAAK,YAEPlB,EAAKyB,kBAAkB,CACrBJ,MAAO,cACPH,IAAK,YAEP,CACEG,MAAO,IACPH,IAAK,IACLQ,UAAW,GAEb,CACEL,MAAO,IACPH,IAAK,IACLQ,UAAW,KAcjB,CACEA,UAAW,EACXJ,SAAU,CACR,CACEP,MAAO,CACL,EAAG,WACH,EAAG,UAELC,MAAO,CACLX,EACAF,IAGJ,CACEY,MAAO,CACL,EAAG,WACH,EAAG,UAELC,MAAO,CACL,UACAb,IAGJ,CACEY,MAAO,CACL,EAAG,cACH,EAAG,UAELC,MAAO,CACLV,EACAH,IAGJ,CACEY,MAAO,CAAE,EAAG,UACZC,MAAO,CACL,mBACAb,MAOR,CAEEY,MAAO,CAAE,EAAG,YACZC,MAAO,CACLd,EACA,MACA,KACA,QAIJ,CACEa,MAAO,WACPW,UAAW,EACXJ,SAAU,CACR,CAAEN,MAAOX,GACT,CAAEW,MAAO,aAIb,CACED,MAAO,cACPW,UAAW,EACXV,MAAOV,GAGT,CAEEe,MAAO,IACPH,IAAK,IACLL,SAAU,CAAE,CAAEQ,MAAO","sources":["webpack://telegram-t/./node_modules/highlight.js/lib/languages/r.js"],"sourcesContent":["/*\nLanguage: R\nDescription: R is a free software environment for statistical computing and graphics.\nAuthor: Joe Cheng <joe@rstudio.org>\nContributors: Konrad Rudolph <konrad.rudolph@gmail.com>\nWebsite: https://www.r-project.org\nCategory: common,scientific\n*/\n\n/** @type LanguageFn */\nfunction r(hljs) {\n const regex = hljs.regex;\n // Identifiers in R cannot start with `_`, but they can start with `.` if it\n // is not immediately followed by a digit.\n // R also supports quoted identifiers, which are near-arbitrary sequences\n // delimited by backticks (`…`), which may contain escape sequences. These are\n // handled in a separate mode. See `test/markup/r/names.txt` for examples.\n // FIXME: Support Unicode identifiers.\n const IDENT_RE = /(?:(?:[a-zA-Z]|\\.[._a-zA-Z])[._a-zA-Z0-9]*)|\\.(?!\\d)/;\n const NUMBER_TYPES_RE = regex.either(\n // Special case: only hexadecimal binary powers can contain fractions\n /0[xX][0-9a-fA-F]+\\.[0-9a-fA-F]*[pP][+-]?\\d+i?/,\n // Hexadecimal numbers without fraction and optional binary power\n /0[xX][0-9a-fA-F]+(?:[pP][+-]?\\d+)?[Li]?/,\n // Decimal numbers\n /(?:\\d+(?:\\.\\d*)?|\\.\\d+)(?:[eE][+-]?\\d+)?[Li]?/\n );\n const OPERATORS_RE = /[=!<>:]=|\\|\\||&&|:::?|<-|<<-|->>|->|\\|>|[-+*\\/?!$&|:<=>@^~]|\\*\\*/;\n const PUNCTUATION_RE = regex.either(\n /[()]/,\n /[{}]/,\n /\\[\\[/,\n /[[\\]]/,\n /\\\\/,\n /,/\n );\n\n return {\n name: 'R',\n\n keywords: {\n $pattern: IDENT_RE,\n keyword:\n 'function if in break next repeat else for while',\n literal:\n 'NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 '\n + 'NA_character_|10 NA_complex_|10',\n built_in:\n // Builtin constants\n 'LETTERS letters month.abb month.name pi T F '\n // Primitive functions\n // These are all the functions in `base` that are implemented as a\n // `.Primitive`, minus those functions that are also keywords.\n + 'abs acos acosh all any anyNA Arg as.call as.character '\n + 'as.complex as.double as.environment as.integer as.logical '\n + 'as.null.default as.numeric as.raw asin asinh atan atanh attr '\n + 'attributes baseenv browser c call ceiling class Conj cos cosh '\n + 'cospi cummax cummin cumprod cumsum digamma dim dimnames '\n + 'emptyenv exp expression floor forceAndCall gamma gc.time '\n + 'globalenv Im interactive invisible is.array
|