@parcel/codeframe 2.0.0-dev.1430 → 2.0.0-dev.1431

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/codeframe.js CHANGED
@@ -2860,430 +2860,56 @@ module.exports = $af94cd74eed7763d$var$bash;
2860
2860
 
2861
2861
  });
2862
2862
 
2863
- parcelRegister("cLsqx", function(module, exports) {
2864
- /*
2865
- Language: Julia
2866
- Description: Julia is a high-level, high-performance, dynamic programming language.
2867
- Author: Kenta Sato <bicycle1885@gmail.com>
2868
- Contributors: Alex Arslan <ararslan@comcast.net>, Fredrik Ekre <ekrefredrik@gmail.com>
2869
- Website: https://julialang.org
2870
- */ function $94afecd538db2fad$var$julia(hljs) {
2871
- // Since there are numerous special names in Julia, it is too much trouble
2872
- // to maintain them by hand. Hence these names (i.e. keywords, literals and
2873
- // built-ins) are automatically generated from Julia 1.5.2 itself through
2874
- // the following scripts for each.
2875
- // ref: https://docs.julialang.org/en/v1/manual/variables/#Allowed-Variable-Names
2876
- var VARIABLE_NAME_RE = "[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*";
2877
- // # keyword generator, multi-word keywords handled manually below (Julia 1.5.2)
2878
- // import REPL.REPLCompletions
2879
- // res = String["in", "isa", "where"]
2880
- // for kw in collect(x.keyword for x in REPLCompletions.complete_keyword(""))
2881
- // if !(contains(kw, " ") || kw == "struct")
2882
- // push!(res, kw)
2883
- // end
2884
- // end
2885
- // sort!(unique!(res))
2886
- // foreach(x -> println("\'", x, "\',"), res)
2887
- var KEYWORD_LIST = [
2888
- "baremodule",
2889
- "begin",
2890
- "break",
2891
- "catch",
2892
- "ccall",
2893
- "const",
2894
- "continue",
2895
- "do",
2896
- "else",
2897
- "elseif",
2898
- "end",
2899
- "export",
2900
- "false",
2901
- "finally",
2902
- "for",
2903
- "function",
2904
- "global",
2905
- "if",
2906
- "import",
2907
- "in",
2908
- "isa",
2909
- "let",
2910
- "local",
2911
- "macro",
2912
- "module",
2913
- "quote",
2914
- "return",
2915
- "true",
2916
- "try",
2917
- "using",
2918
- "where",
2919
- "while"
2920
- ];
2921
- // # literal generator (Julia 1.5.2)
2922
- // import REPL.REPLCompletions
2923
- // res = String["true", "false"]
2924
- // for compl in filter!(x -> isa(x, REPLCompletions.ModuleCompletion) && (x.parent === Base || x.parent === Core),
2925
- // REPLCompletions.completions("", 0)[1])
2926
- // try
2927
- // v = eval(Symbol(compl.mod))
2928
- // if !(v isa Function || v isa Type || v isa TypeVar || v isa Module || v isa Colon)
2929
- // push!(res, compl.mod)
2930
- // end
2931
- // catch e
2932
- // end
2933
- // end
2934
- // sort!(unique!(res))
2935
- // foreach(x -> println("\'", x, "\',"), res)
2936
- var LITERAL_LIST = [
2937
- "ARGS",
2938
- "C_NULL",
2939
- "DEPOT_PATH",
2940
- "ENDIAN_BOM",
2941
- "ENV",
2942
- "Inf",
2943
- "Inf16",
2944
- "Inf32",
2945
- "Inf64",
2946
- "InsertionSort",
2947
- "LOAD_PATH",
2948
- "MergeSort",
2949
- "NaN",
2950
- "NaN16",
2951
- "NaN32",
2952
- "NaN64",
2953
- "PROGRAM_FILE",
2954
- "QuickSort",
2955
- "RoundDown",
2956
- "RoundFromZero",
2957
- "RoundNearest",
2958
- "RoundNearestTiesAway",
2959
- "RoundNearestTiesUp",
2960
- "RoundToZero",
2961
- "RoundUp",
2962
- "VERSION|0",
2963
- "devnull",
2964
- "false",
2965
- "im",
2966
- "missing",
2967
- "nothing",
2968
- "pi",
2969
- "stderr",
2970
- "stdin",
2971
- "stdout",
2972
- "true",
2973
- "undef",
2974
- "\u03C0",
2975
- "\u212F"
2976
- ];
2977
- // # built_in generator (Julia 1.5.2)
2978
- // import REPL.REPLCompletions
2979
- // res = String[]
2980
- // for compl in filter!(x -> isa(x, REPLCompletions.ModuleCompletion) && (x.parent === Base || x.parent === Core),
2981
- // REPLCompletions.completions("", 0)[1])
2982
- // try
2983
- // v = eval(Symbol(compl.mod))
2984
- // if (v isa Type || v isa TypeVar) && (compl.mod != "=>")
2985
- // push!(res, compl.mod)
2986
- // end
2987
- // catch e
2988
- // end
2989
- // end
2990
- // sort!(unique!(res))
2991
- // foreach(x -> println("\'", x, "\',"), res)
2992
- var BUILT_IN_LIST = [
2993
- "AbstractArray",
2994
- "AbstractChannel",
2995
- "AbstractChar",
2996
- "AbstractDict",
2997
- "AbstractDisplay",
2998
- "AbstractFloat",
2999
- "AbstractIrrational",
3000
- "AbstractMatrix",
3001
- "AbstractRange",
3002
- "AbstractSet",
3003
- "AbstractString",
3004
- "AbstractUnitRange",
3005
- "AbstractVecOrMat",
3006
- "AbstractVector",
3007
- "Any",
3008
- "ArgumentError",
3009
- "Array",
3010
- "AssertionError",
3011
- "BigFloat",
3012
- "BigInt",
3013
- "BitArray",
3014
- "BitMatrix",
3015
- "BitSet",
3016
- "BitVector",
3017
- "Bool",
3018
- "BoundsError",
3019
- "CapturedException",
3020
- "CartesianIndex",
3021
- "CartesianIndices",
3022
- "Cchar",
3023
- "Cdouble",
3024
- "Cfloat",
3025
- "Channel",
3026
- "Char",
3027
- "Cint",
3028
- "Cintmax_t",
3029
- "Clong",
3030
- "Clonglong",
3031
- "Cmd",
3032
- "Colon",
3033
- "Complex",
3034
- "ComplexF16",
3035
- "ComplexF32",
3036
- "ComplexF64",
3037
- "CompositeException",
3038
- "Condition",
3039
- "Cptrdiff_t",
3040
- "Cshort",
3041
- "Csize_t",
3042
- "Cssize_t",
3043
- "Cstring",
3044
- "Cuchar",
3045
- "Cuint",
3046
- "Cuintmax_t",
3047
- "Culong",
3048
- "Culonglong",
3049
- "Cushort",
3050
- "Cvoid",
3051
- "Cwchar_t",
3052
- "Cwstring",
3053
- "DataType",
3054
- "DenseArray",
3055
- "DenseMatrix",
3056
- "DenseVecOrMat",
3057
- "DenseVector",
3058
- "Dict",
3059
- "DimensionMismatch",
3060
- "Dims",
3061
- "DivideError",
3062
- "DomainError",
3063
- "EOFError",
3064
- "Enum",
3065
- "ErrorException",
3066
- "Exception",
3067
- "ExponentialBackOff",
3068
- "Expr",
3069
- "Float16",
3070
- "Float32",
3071
- "Float64",
3072
- "Function",
3073
- "GlobalRef",
3074
- "HTML",
3075
- "IO",
3076
- "IOBuffer",
3077
- "IOContext",
3078
- "IOStream",
3079
- "IdDict",
3080
- "IndexCartesian",
3081
- "IndexLinear",
3082
- "IndexStyle",
3083
- "InexactError",
3084
- "InitError",
3085
- "Int",
3086
- "Int128",
3087
- "Int16",
3088
- "Int32",
3089
- "Int64",
3090
- "Int8",
3091
- "Integer",
3092
- "InterruptException",
3093
- "InvalidStateException",
3094
- "Irrational",
3095
- "KeyError",
3096
- "LinRange",
3097
- "LineNumberNode",
3098
- "LinearIndices",
3099
- "LoadError",
3100
- "MIME",
3101
- "Matrix",
3102
- "Method",
3103
- "MethodError",
3104
- "Missing",
3105
- "MissingException",
3106
- "Module",
3107
- "NTuple",
3108
- "NamedTuple",
3109
- "Nothing",
3110
- "Number",
3111
- "OrdinalRange",
3112
- "OutOfMemoryError",
3113
- "OverflowError",
3114
- "Pair",
3115
- "PartialQuickSort",
3116
- "PermutedDimsArray",
3117
- "Pipe",
3118
- "ProcessFailedException",
3119
- "Ptr",
3120
- "QuoteNode",
3121
- "Rational",
3122
- "RawFD",
3123
- "ReadOnlyMemoryError",
3124
- "Real",
3125
- "ReentrantLock",
3126
- "Ref",
3127
- "Regex",
3128
- "RegexMatch",
3129
- "RoundingMode",
3130
- "SegmentationFault",
3131
- "Set",
3132
- "Signed",
3133
- "Some",
3134
- "StackOverflowError",
3135
- "StepRange",
3136
- "StepRangeLen",
3137
- "StridedArray",
3138
- "StridedMatrix",
3139
- "StridedVecOrMat",
3140
- "StridedVector",
3141
- "String",
3142
- "StringIndexError",
3143
- "SubArray",
3144
- "SubString",
3145
- "SubstitutionString",
3146
- "Symbol",
3147
- "SystemError",
3148
- "Task",
3149
- "TaskFailedException",
3150
- "Text",
3151
- "TextDisplay",
3152
- "Timer",
3153
- "Tuple",
3154
- "Type",
3155
- "TypeError",
3156
- "TypeVar",
3157
- "UInt",
3158
- "UInt128",
3159
- "UInt16",
3160
- "UInt32",
3161
- "UInt64",
3162
- "UInt8",
3163
- "UndefInitializer",
3164
- "UndefKeywordError",
3165
- "UndefRefError",
3166
- "UndefVarError",
3167
- "Union",
3168
- "UnionAll",
3169
- "UnitRange",
3170
- "Unsigned",
3171
- "Val",
3172
- "Vararg",
3173
- "VecElement",
3174
- "VecOrMat",
3175
- "Vector",
3176
- "VersionNumber",
3177
- "WeakKeyDict",
3178
- "WeakRef"
3179
- ];
3180
- var KEYWORDS = {
3181
- $pattern: VARIABLE_NAME_RE,
3182
- keyword: KEYWORD_LIST.join(" "),
3183
- literal: LITERAL_LIST.join(" "),
3184
- built_in: BUILT_IN_LIST.join(" ")
3185
- };
3186
- // placeholder for recursive self-reference
3187
- var DEFAULT = {
3188
- keywords: KEYWORDS,
3189
- illegal: /<\//
3190
- };
3191
- // ref: https://docs.julialang.org/en/v1/manual/integers-and-floating-point-numbers/
3192
- var NUMBER = {
3193
- className: "number",
3194
- // supported numeric literals:
3195
- // * binary literal (e.g. 0x10)
3196
- // * octal literal (e.g. 0o76543210)
3197
- // * hexadecimal literal (e.g. 0xfedcba876543210)
3198
- // * hexadecimal floating point literal (e.g. 0x1p0, 0x1.2p2)
3199
- // * decimal literal (e.g. 9876543210, 100_000_000)
3200
- // * floating pointe literal (e.g. 1.2, 1.2f, .2, 1., 1.2e10, 1.2e-10)
3201
- begin: /(\b0x[\d_]*(\.[\d_]*)?|0x\.\d[\d_]*)p[-+]?\d+|\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\b\d[\d_]*(\.[\d_]*)?|\.\d[\d_]*)([eEfF][-+]?\d+)?/,
3202
- relevance: 0
3203
- };
3204
- var CHAR = {
3205
- className: "string",
3206
- begin: /'(.|\\[xXuU][a-zA-Z0-9]+)'/
3207
- };
3208
- var INTERPOLATION = {
3209
- className: "subst",
3210
- begin: /\$\(/,
3211
- end: /\)/,
3212
- keywords: KEYWORDS
3213
- };
3214
- var INTERPOLATED_VARIABLE = {
3215
- className: "variable",
3216
- begin: "\\$" + VARIABLE_NAME_RE
3217
- };
3218
- // TODO: neatly escape normal code in string literal
3219
- var STRING = {
3220
- className: "string",
2863
+ parcelRegister("bXsnb", function(module, exports) {
2864
+ /*
2865
+ Language: BASIC
2866
+ Author: Raphaël Assénat <raph@raphnet.net>
2867
+ Description: Based on the BASIC reference from the Tandy 1000 guide
2868
+ Website: https://en.wikipedia.org/wiki/Tandy_1000
2869
+ */ /** @type LanguageFn */ function $8b4b36a5b3894e20$var$basic(hljs) {
2870
+ return {
2871
+ name: "BASIC",
2872
+ case_insensitive: true,
2873
+ illegal: "^.",
2874
+ // Support explicitly typed variables that end with $%! or #.
2875
+ keywords: {
2876
+ $pattern: "[a-zA-Z][a-zA-Z0-9_$%!#]*",
2877
+ keyword: "ABS ASC AND ATN AUTO|0 BEEP BLOAD|10 BSAVE|10 CALL CALLS CDBL CHAIN CHDIR CHR$|10 CINT CIRCLE CLEAR CLOSE CLS COLOR COM COMMON CONT COS CSNG CSRLIN CVD CVI CVS DATA DATE$ DEFDBL DEFINT DEFSNG DEFSTR DEF|0 SEG USR DELETE DIM DRAW EDIT END ENVIRON ENVIRON$ EOF EQV ERASE ERDEV ERDEV$ ERL ERR ERROR EXP FIELD FILES FIX FOR|0 FRE GET GOSUB|10 GOTO HEX$ IF THEN ELSE|0 INKEY$ INP INPUT INPUT# INPUT$ INSTR IMP INT IOCTL IOCTL$ KEY ON OFF LIST KILL LEFT$ LEN LET LINE LLIST LOAD LOC LOCATE LOF LOG LPRINT USING LSET MERGE MID$ MKDIR MKD$ MKI$ MKS$ MOD NAME NEW NEXT NOISE NOT OCT$ ON OR PEN PLAY STRIG OPEN OPTION BASE OUT PAINT PALETTE PCOPY PEEK PMAP POINT POKE POS PRINT PRINT] PSET PRESET PUT RANDOMIZE READ REM RENUM RESET|0 RESTORE RESUME RETURN|0 RIGHT$ RMDIR RND RSET RUN SAVE SCREEN SGN SHELL SIN SOUND SPACE$ SPC SQR STEP STICK STOP STR$ STRING$ SWAP SYSTEM TAB TAN TIME$ TIMER TROFF TRON TO USR VAL VARPTR VARPTR$ VIEW WAIT WHILE WEND WIDTH WINDOW WRITE XOR"
2878
+ },
3221
2879
  contains: [
3222
- hljs.BACKSLASH_ESCAPE,
3223
- INTERPOLATION,
3224
- INTERPOLATED_VARIABLE
3225
- ],
3226
- variants: [
2880
+ hljs.QUOTE_STRING_MODE,
2881
+ hljs.COMMENT("REM", "$", {
2882
+ relevance: 10
2883
+ }),
2884
+ hljs.COMMENT("'", "$", {
2885
+ relevance: 0
2886
+ }),
3227
2887
  {
3228
- begin: /\w*"""/,
3229
- end: /"""\w*/,
2888
+ // Match line numbers
2889
+ className: "symbol",
2890
+ begin: "^[0-9]+ ",
3230
2891
  relevance: 10
3231
2892
  },
3232
2893
  {
3233
- begin: /\w*"/,
3234
- end: /"\w*/
3235
- }
3236
- ]
3237
- };
3238
- var COMMAND = {
3239
- className: "string",
3240
- contains: [
3241
- hljs.BACKSLASH_ESCAPE,
3242
- INTERPOLATION,
3243
- INTERPOLATED_VARIABLE
3244
- ],
3245
- begin: "`",
3246
- end: "`"
3247
- };
3248
- var MACROCALL = {
3249
- className: "meta",
3250
- begin: "@" + VARIABLE_NAME_RE
3251
- };
3252
- var COMMENT = {
3253
- className: "comment",
3254
- variants: [
2894
+ // Match typed numeric constants (1000, 12.34!, 1.2e5, 1.5#, 1.2D2)
2895
+ className: "number",
2896
+ begin: "\\b\\d+(\\.\\d+)?([edED]\\d+)?[#!]?",
2897
+ relevance: 0
2898
+ },
3255
2899
  {
3256
- begin: "#=",
3257
- end: "=#",
3258
- relevance: 10
2900
+ // Match hexadecimal numbers (&Hxxxx)
2901
+ className: "number",
2902
+ begin: "(&[hH][0-9a-fA-F]{1,4})"
3259
2903
  },
3260
2904
  {
3261
- begin: "#",
3262
- end: "$"
2905
+ // Match octal numbers (&Oxxxxxx)
2906
+ className: "number",
2907
+ begin: "(&[oO][0-7]{1,6})"
3263
2908
  }
3264
2909
  ]
3265
2910
  };
3266
- DEFAULT.name = "Julia";
3267
- DEFAULT.contains = [
3268
- NUMBER,
3269
- CHAR,
3270
- STRING,
3271
- COMMAND,
3272
- MACROCALL,
3273
- COMMENT,
3274
- hljs.HASH_COMMENT_MODE,
3275
- {
3276
- className: "keyword",
3277
- begin: "\\b(((abstract|primitive)\\s+)type|(mutable\\s+)?struct)\\b"
3278
- },
3279
- {
3280
- begin: /<:/
3281
- } // relevance booster
3282
- ];
3283
- INTERPOLATION.contains = DEFAULT.contains;
3284
- return DEFAULT;
3285
2911
  }
3286
- module.exports = $94afecd538db2fad$var$julia;
2912
+ module.exports = $8b4b36a5b3894e20$var$basic;
3287
2913
 
3288
2914
  });
3289
2915
 
@@ -12171,108 +11797,535 @@ parcelRegister("jAmEG", function(module, exports) {
12171
11797
  ],
12172
11798
  relevance: 0
12173
11799
  };
12174
- const OPERATION = {
12175
- className: "function",
12176
- begin: /:[\w\-.]+/,
11800
+ const OPERATION = {
11801
+ className: "function",
11802
+ begin: /:[\w\-.]+/,
11803
+ relevance: 0
11804
+ };
11805
+ const PATH = {
11806
+ className: "string",
11807
+ begin: /\B([\/.])[\w\-.\/=]+/
11808
+ };
11809
+ const COMMAND_PARAMS = {
11810
+ className: "params",
11811
+ begin: /--[\w\-=\/]+/
11812
+ };
11813
+ return {
11814
+ name: "JBoss CLI",
11815
+ aliases: [
11816
+ "wildfly-cli"
11817
+ ],
11818
+ keywords: {
11819
+ $pattern: "[a-z-]+",
11820
+ keyword: "alias batch cd clear command connect connection-factory connection-info data-source deploy deployment-info deployment-overlay echo echo-dmr help history if jdbc-driver-info jms-queue|20 jms-topic|20 ls patch pwd quit read-attribute read-operation reload rollout-plan run-batch set shutdown try unalias undeploy unset version xa-data-source",
11821
+ literal: "true false"
11822
+ },
11823
+ contains: [
11824
+ hljs.HASH_COMMENT_MODE,
11825
+ hljs.QUOTE_STRING_MODE,
11826
+ COMMAND_PARAMS,
11827
+ OPERATION,
11828
+ PATH,
11829
+ PARAMSBLOCK
11830
+ ]
11831
+ };
11832
+ }
11833
+ module.exports = $e422f3f054f79256$var$jbossCli;
11834
+
11835
+ });
11836
+
11837
+ parcelRegister("2Vkcl", function(module, exports) {
11838
+ /*
11839
+ Language: JSON
11840
+ Description: JSON (JavaScript Object Notation) is a lightweight data-interchange format.
11841
+ Author: Ivan Sagalaev <maniac@softwaremaniacs.org>
11842
+ Website: http://www.json.org
11843
+ Category: common, protocols
11844
+ */ function $2210928d4eb08ac7$var$json(hljs) {
11845
+ const LITERALS = {
11846
+ literal: "true false null"
11847
+ };
11848
+ const ALLOWED_COMMENTS = [
11849
+ hljs.C_LINE_COMMENT_MODE,
11850
+ hljs.C_BLOCK_COMMENT_MODE
11851
+ ];
11852
+ const TYPES = [
11853
+ hljs.QUOTE_STRING_MODE,
11854
+ hljs.C_NUMBER_MODE
11855
+ ];
11856
+ const VALUE_CONTAINER = {
11857
+ end: ",",
11858
+ endsWithParent: true,
11859
+ excludeEnd: true,
11860
+ contains: TYPES,
11861
+ keywords: LITERALS
11862
+ };
11863
+ const OBJECT = {
11864
+ begin: /\{/,
11865
+ end: /\}/,
11866
+ contains: [
11867
+ {
11868
+ className: "attr",
11869
+ begin: /"/,
11870
+ end: /"/,
11871
+ contains: [
11872
+ hljs.BACKSLASH_ESCAPE
11873
+ ],
11874
+ illegal: "\\n"
11875
+ },
11876
+ hljs.inherit(VALUE_CONTAINER, {
11877
+ begin: /:/
11878
+ })
11879
+ ].concat(ALLOWED_COMMENTS),
11880
+ illegal: "\\S"
11881
+ };
11882
+ const ARRAY = {
11883
+ begin: "\\[",
11884
+ end: "\\]",
11885
+ contains: [
11886
+ hljs.inherit(VALUE_CONTAINER)
11887
+ ],
11888
+ illegal: "\\S"
11889
+ };
11890
+ TYPES.push(OBJECT, ARRAY);
11891
+ ALLOWED_COMMENTS.forEach(function(rule) {
11892
+ TYPES.push(rule);
11893
+ });
11894
+ return {
11895
+ name: "JSON",
11896
+ contains: TYPES,
11897
+ keywords: LITERALS,
11898
+ illegal: "\\S"
11899
+ };
11900
+ }
11901
+ module.exports = $2210928d4eb08ac7$var$json;
11902
+
11903
+ });
11904
+
11905
+ parcelRegister("cLsqx", function(module, exports) {
11906
+ /*
11907
+ Language: Julia
11908
+ Description: Julia is a high-level, high-performance, dynamic programming language.
11909
+ Author: Kenta Sato <bicycle1885@gmail.com>
11910
+ Contributors: Alex Arslan <ararslan@comcast.net>, Fredrik Ekre <ekrefredrik@gmail.com>
11911
+ Website: https://julialang.org
11912
+ */ function $94afecd538db2fad$var$julia(hljs) {
11913
+ // Since there are numerous special names in Julia, it is too much trouble
11914
+ // to maintain them by hand. Hence these names (i.e. keywords, literals and
11915
+ // built-ins) are automatically generated from Julia 1.5.2 itself through
11916
+ // the following scripts for each.
11917
+ // ref: https://docs.julialang.org/en/v1/manual/variables/#Allowed-Variable-Names
11918
+ var VARIABLE_NAME_RE = "[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*";
11919
+ // # keyword generator, multi-word keywords handled manually below (Julia 1.5.2)
11920
+ // import REPL.REPLCompletions
11921
+ // res = String["in", "isa", "where"]
11922
+ // for kw in collect(x.keyword for x in REPLCompletions.complete_keyword(""))
11923
+ // if !(contains(kw, " ") || kw == "struct")
11924
+ // push!(res, kw)
11925
+ // end
11926
+ // end
11927
+ // sort!(unique!(res))
11928
+ // foreach(x -> println("\'", x, "\',"), res)
11929
+ var KEYWORD_LIST = [
11930
+ "baremodule",
11931
+ "begin",
11932
+ "break",
11933
+ "catch",
11934
+ "ccall",
11935
+ "const",
11936
+ "continue",
11937
+ "do",
11938
+ "else",
11939
+ "elseif",
11940
+ "end",
11941
+ "export",
11942
+ "false",
11943
+ "finally",
11944
+ "for",
11945
+ "function",
11946
+ "global",
11947
+ "if",
11948
+ "import",
11949
+ "in",
11950
+ "isa",
11951
+ "let",
11952
+ "local",
11953
+ "macro",
11954
+ "module",
11955
+ "quote",
11956
+ "return",
11957
+ "true",
11958
+ "try",
11959
+ "using",
11960
+ "where",
11961
+ "while"
11962
+ ];
11963
+ // # literal generator (Julia 1.5.2)
11964
+ // import REPL.REPLCompletions
11965
+ // res = String["true", "false"]
11966
+ // for compl in filter!(x -> isa(x, REPLCompletions.ModuleCompletion) && (x.parent === Base || x.parent === Core),
11967
+ // REPLCompletions.completions("", 0)[1])
11968
+ // try
11969
+ // v = eval(Symbol(compl.mod))
11970
+ // if !(v isa Function || v isa Type || v isa TypeVar || v isa Module || v isa Colon)
11971
+ // push!(res, compl.mod)
11972
+ // end
11973
+ // catch e
11974
+ // end
11975
+ // end
11976
+ // sort!(unique!(res))
11977
+ // foreach(x -> println("\'", x, "\',"), res)
11978
+ var LITERAL_LIST = [
11979
+ "ARGS",
11980
+ "C_NULL",
11981
+ "DEPOT_PATH",
11982
+ "ENDIAN_BOM",
11983
+ "ENV",
11984
+ "Inf",
11985
+ "Inf16",
11986
+ "Inf32",
11987
+ "Inf64",
11988
+ "InsertionSort",
11989
+ "LOAD_PATH",
11990
+ "MergeSort",
11991
+ "NaN",
11992
+ "NaN16",
11993
+ "NaN32",
11994
+ "NaN64",
11995
+ "PROGRAM_FILE",
11996
+ "QuickSort",
11997
+ "RoundDown",
11998
+ "RoundFromZero",
11999
+ "RoundNearest",
12000
+ "RoundNearestTiesAway",
12001
+ "RoundNearestTiesUp",
12002
+ "RoundToZero",
12003
+ "RoundUp",
12004
+ "VERSION|0",
12005
+ "devnull",
12006
+ "false",
12007
+ "im",
12008
+ "missing",
12009
+ "nothing",
12010
+ "pi",
12011
+ "stderr",
12012
+ "stdin",
12013
+ "stdout",
12014
+ "true",
12015
+ "undef",
12016
+ "\u03C0",
12017
+ "\u212F"
12018
+ ];
12019
+ // # built_in generator (Julia 1.5.2)
12020
+ // import REPL.REPLCompletions
12021
+ // res = String[]
12022
+ // for compl in filter!(x -> isa(x, REPLCompletions.ModuleCompletion) && (x.parent === Base || x.parent === Core),
12023
+ // REPLCompletions.completions("", 0)[1])
12024
+ // try
12025
+ // v = eval(Symbol(compl.mod))
12026
+ // if (v isa Type || v isa TypeVar) && (compl.mod != "=>")
12027
+ // push!(res, compl.mod)
12028
+ // end
12029
+ // catch e
12030
+ // end
12031
+ // end
12032
+ // sort!(unique!(res))
12033
+ // foreach(x -> println("\'", x, "\',"), res)
12034
+ var BUILT_IN_LIST = [
12035
+ "AbstractArray",
12036
+ "AbstractChannel",
12037
+ "AbstractChar",
12038
+ "AbstractDict",
12039
+ "AbstractDisplay",
12040
+ "AbstractFloat",
12041
+ "AbstractIrrational",
12042
+ "AbstractMatrix",
12043
+ "AbstractRange",
12044
+ "AbstractSet",
12045
+ "AbstractString",
12046
+ "AbstractUnitRange",
12047
+ "AbstractVecOrMat",
12048
+ "AbstractVector",
12049
+ "Any",
12050
+ "ArgumentError",
12051
+ "Array",
12052
+ "AssertionError",
12053
+ "BigFloat",
12054
+ "BigInt",
12055
+ "BitArray",
12056
+ "BitMatrix",
12057
+ "BitSet",
12058
+ "BitVector",
12059
+ "Bool",
12060
+ "BoundsError",
12061
+ "CapturedException",
12062
+ "CartesianIndex",
12063
+ "CartesianIndices",
12064
+ "Cchar",
12065
+ "Cdouble",
12066
+ "Cfloat",
12067
+ "Channel",
12068
+ "Char",
12069
+ "Cint",
12070
+ "Cintmax_t",
12071
+ "Clong",
12072
+ "Clonglong",
12073
+ "Cmd",
12074
+ "Colon",
12075
+ "Complex",
12076
+ "ComplexF16",
12077
+ "ComplexF32",
12078
+ "ComplexF64",
12079
+ "CompositeException",
12080
+ "Condition",
12081
+ "Cptrdiff_t",
12082
+ "Cshort",
12083
+ "Csize_t",
12084
+ "Cssize_t",
12085
+ "Cstring",
12086
+ "Cuchar",
12087
+ "Cuint",
12088
+ "Cuintmax_t",
12089
+ "Culong",
12090
+ "Culonglong",
12091
+ "Cushort",
12092
+ "Cvoid",
12093
+ "Cwchar_t",
12094
+ "Cwstring",
12095
+ "DataType",
12096
+ "DenseArray",
12097
+ "DenseMatrix",
12098
+ "DenseVecOrMat",
12099
+ "DenseVector",
12100
+ "Dict",
12101
+ "DimensionMismatch",
12102
+ "Dims",
12103
+ "DivideError",
12104
+ "DomainError",
12105
+ "EOFError",
12106
+ "Enum",
12107
+ "ErrorException",
12108
+ "Exception",
12109
+ "ExponentialBackOff",
12110
+ "Expr",
12111
+ "Float16",
12112
+ "Float32",
12113
+ "Float64",
12114
+ "Function",
12115
+ "GlobalRef",
12116
+ "HTML",
12117
+ "IO",
12118
+ "IOBuffer",
12119
+ "IOContext",
12120
+ "IOStream",
12121
+ "IdDict",
12122
+ "IndexCartesian",
12123
+ "IndexLinear",
12124
+ "IndexStyle",
12125
+ "InexactError",
12126
+ "InitError",
12127
+ "Int",
12128
+ "Int128",
12129
+ "Int16",
12130
+ "Int32",
12131
+ "Int64",
12132
+ "Int8",
12133
+ "Integer",
12134
+ "InterruptException",
12135
+ "InvalidStateException",
12136
+ "Irrational",
12137
+ "KeyError",
12138
+ "LinRange",
12139
+ "LineNumberNode",
12140
+ "LinearIndices",
12141
+ "LoadError",
12142
+ "MIME",
12143
+ "Matrix",
12144
+ "Method",
12145
+ "MethodError",
12146
+ "Missing",
12147
+ "MissingException",
12148
+ "Module",
12149
+ "NTuple",
12150
+ "NamedTuple",
12151
+ "Nothing",
12152
+ "Number",
12153
+ "OrdinalRange",
12154
+ "OutOfMemoryError",
12155
+ "OverflowError",
12156
+ "Pair",
12157
+ "PartialQuickSort",
12158
+ "PermutedDimsArray",
12159
+ "Pipe",
12160
+ "ProcessFailedException",
12161
+ "Ptr",
12162
+ "QuoteNode",
12163
+ "Rational",
12164
+ "RawFD",
12165
+ "ReadOnlyMemoryError",
12166
+ "Real",
12167
+ "ReentrantLock",
12168
+ "Ref",
12169
+ "Regex",
12170
+ "RegexMatch",
12171
+ "RoundingMode",
12172
+ "SegmentationFault",
12173
+ "Set",
12174
+ "Signed",
12175
+ "Some",
12176
+ "StackOverflowError",
12177
+ "StepRange",
12178
+ "StepRangeLen",
12179
+ "StridedArray",
12180
+ "StridedMatrix",
12181
+ "StridedVecOrMat",
12182
+ "StridedVector",
12183
+ "String",
12184
+ "StringIndexError",
12185
+ "SubArray",
12186
+ "SubString",
12187
+ "SubstitutionString",
12188
+ "Symbol",
12189
+ "SystemError",
12190
+ "Task",
12191
+ "TaskFailedException",
12192
+ "Text",
12193
+ "TextDisplay",
12194
+ "Timer",
12195
+ "Tuple",
12196
+ "Type",
12197
+ "TypeError",
12198
+ "TypeVar",
12199
+ "UInt",
12200
+ "UInt128",
12201
+ "UInt16",
12202
+ "UInt32",
12203
+ "UInt64",
12204
+ "UInt8",
12205
+ "UndefInitializer",
12206
+ "UndefKeywordError",
12207
+ "UndefRefError",
12208
+ "UndefVarError",
12209
+ "Union",
12210
+ "UnionAll",
12211
+ "UnitRange",
12212
+ "Unsigned",
12213
+ "Val",
12214
+ "Vararg",
12215
+ "VecElement",
12216
+ "VecOrMat",
12217
+ "Vector",
12218
+ "VersionNumber",
12219
+ "WeakKeyDict",
12220
+ "WeakRef"
12221
+ ];
12222
+ var KEYWORDS = {
12223
+ $pattern: VARIABLE_NAME_RE,
12224
+ keyword: KEYWORD_LIST.join(" "),
12225
+ literal: LITERAL_LIST.join(" "),
12226
+ built_in: BUILT_IN_LIST.join(" ")
12227
+ };
12228
+ // placeholder for recursive self-reference
12229
+ var DEFAULT = {
12230
+ keywords: KEYWORDS,
12231
+ illegal: /<\//
12232
+ };
12233
+ // ref: https://docs.julialang.org/en/v1/manual/integers-and-floating-point-numbers/
12234
+ var NUMBER = {
12235
+ className: "number",
12236
+ // supported numeric literals:
12237
+ // * binary literal (e.g. 0x10)
12238
+ // * octal literal (e.g. 0o76543210)
12239
+ // * hexadecimal literal (e.g. 0xfedcba876543210)
12240
+ // * hexadecimal floating point literal (e.g. 0x1p0, 0x1.2p2)
12241
+ // * decimal literal (e.g. 9876543210, 100_000_000)
12242
+ // * floating pointe literal (e.g. 1.2, 1.2f, .2, 1., 1.2e10, 1.2e-10)
12243
+ begin: /(\b0x[\d_]*(\.[\d_]*)?|0x\.\d[\d_]*)p[-+]?\d+|\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\b\d[\d_]*(\.[\d_]*)?|\.\d[\d_]*)([eEfF][-+]?\d+)?/,
12177
12244
  relevance: 0
12178
12245
  };
12179
- const PATH = {
12246
+ var CHAR = {
12180
12247
  className: "string",
12181
- begin: /\B([\/.])[\w\-.\/=]+/
12182
- };
12183
- const COMMAND_PARAMS = {
12184
- className: "params",
12185
- begin: /--[\w\-=\/]+/
12186
- };
12187
- return {
12188
- name: "JBoss CLI",
12189
- aliases: [
12190
- "wildfly-cli"
12191
- ],
12192
- keywords: {
12193
- $pattern: "[a-z-]+",
12194
- keyword: "alias batch cd clear command connect connection-factory connection-info data-source deploy deployment-info deployment-overlay echo echo-dmr help history if jdbc-driver-info jms-queue|20 jms-topic|20 ls patch pwd quit read-attribute read-operation reload rollout-plan run-batch set shutdown try unalias undeploy unset version xa-data-source",
12195
- literal: "true false"
12196
- },
12197
- contains: [
12198
- hljs.HASH_COMMENT_MODE,
12199
- hljs.QUOTE_STRING_MODE,
12200
- COMMAND_PARAMS,
12201
- OPERATION,
12202
- PATH,
12203
- PARAMSBLOCK
12204
- ]
12248
+ begin: /'(.|\\[xXuU][a-zA-Z0-9]+)'/
12205
12249
  };
12206
- }
12207
- module.exports = $e422f3f054f79256$var$jbossCli;
12208
-
12209
- });
12210
-
12211
- parcelRegister("2Vkcl", function(module, exports) {
12212
- /*
12213
- Language: JSON
12214
- Description: JSON (JavaScript Object Notation) is a lightweight data-interchange format.
12215
- Author: Ivan Sagalaev <maniac@softwaremaniacs.org>
12216
- Website: http://www.json.org
12217
- Category: common, protocols
12218
- */ function $2210928d4eb08ac7$var$json(hljs) {
12219
- const LITERALS = {
12220
- literal: "true false null"
12250
+ var INTERPOLATION = {
12251
+ className: "subst",
12252
+ begin: /\$\(/,
12253
+ end: /\)/,
12254
+ keywords: KEYWORDS
12221
12255
  };
12222
- const ALLOWED_COMMENTS = [
12223
- hljs.C_LINE_COMMENT_MODE,
12224
- hljs.C_BLOCK_COMMENT_MODE
12225
- ];
12226
- const TYPES = [
12227
- hljs.QUOTE_STRING_MODE,
12228
- hljs.C_NUMBER_MODE
12229
- ];
12230
- const VALUE_CONTAINER = {
12231
- end: ",",
12232
- endsWithParent: true,
12233
- excludeEnd: true,
12234
- contains: TYPES,
12235
- keywords: LITERALS
12256
+ var INTERPOLATED_VARIABLE = {
12257
+ className: "variable",
12258
+ begin: "\\$" + VARIABLE_NAME_RE
12236
12259
  };
12237
- const OBJECT = {
12238
- begin: /\{/,
12239
- end: /\}/,
12260
+ // TODO: neatly escape normal code in string literal
12261
+ var STRING = {
12262
+ className: "string",
12240
12263
  contains: [
12264
+ hljs.BACKSLASH_ESCAPE,
12265
+ INTERPOLATION,
12266
+ INTERPOLATED_VARIABLE
12267
+ ],
12268
+ variants: [
12241
12269
  {
12242
- className: "attr",
12243
- begin: /"/,
12244
- end: /"/,
12245
- contains: [
12246
- hljs.BACKSLASH_ESCAPE
12247
- ],
12248
- illegal: "\\n"
12270
+ begin: /\w*"""/,
12271
+ end: /"""\w*/,
12272
+ relevance: 10
12249
12273
  },
12250
- hljs.inherit(VALUE_CONTAINER, {
12251
- begin: /:/
12252
- })
12253
- ].concat(ALLOWED_COMMENTS),
12254
- illegal: "\\S"
12274
+ {
12275
+ begin: /\w*"/,
12276
+ end: /"\w*/
12277
+ }
12278
+ ]
12255
12279
  };
12256
- const ARRAY = {
12257
- begin: "\\[",
12258
- end: "\\]",
12280
+ var COMMAND = {
12281
+ className: "string",
12259
12282
  contains: [
12260
- hljs.inherit(VALUE_CONTAINER)
12283
+ hljs.BACKSLASH_ESCAPE,
12284
+ INTERPOLATION,
12285
+ INTERPOLATED_VARIABLE
12261
12286
  ],
12262
- illegal: "\\S"
12287
+ begin: "`",
12288
+ end: "`"
12263
12289
  };
12264
- TYPES.push(OBJECT, ARRAY);
12265
- ALLOWED_COMMENTS.forEach(function(rule) {
12266
- TYPES.push(rule);
12267
- });
12268
- return {
12269
- name: "JSON",
12270
- contains: TYPES,
12271
- keywords: LITERALS,
12272
- illegal: "\\S"
12290
+ var MACROCALL = {
12291
+ className: "meta",
12292
+ begin: "@" + VARIABLE_NAME_RE
12293
+ };
12294
+ var COMMENT = {
12295
+ className: "comment",
12296
+ variants: [
12297
+ {
12298
+ begin: "#=",
12299
+ end: "=#",
12300
+ relevance: 10
12301
+ },
12302
+ {
12303
+ begin: "#",
12304
+ end: "$"
12305
+ }
12306
+ ]
12273
12307
  };
12308
+ DEFAULT.name = "Julia";
12309
+ DEFAULT.contains = [
12310
+ NUMBER,
12311
+ CHAR,
12312
+ STRING,
12313
+ COMMAND,
12314
+ MACROCALL,
12315
+ COMMENT,
12316
+ hljs.HASH_COMMENT_MODE,
12317
+ {
12318
+ className: "keyword",
12319
+ begin: "\\b(((abstract|primitive)\\s+)type|(mutable\\s+)?struct)\\b"
12320
+ },
12321
+ {
12322
+ begin: /<:/
12323
+ } // relevance booster
12324
+ ];
12325
+ INTERPOLATION.contains = DEFAULT.contains;
12326
+ return DEFAULT;
12274
12327
  }
12275
- module.exports = $2210928d4eb08ac7$var$json;
12328
+ module.exports = $94afecd538db2fad$var$julia;
12276
12329
 
12277
12330
  });
12278
12331
 
@@ -12576,47 +12629,217 @@ var $99c6c365e621081e$var$NUMERIC = {
12576
12629
  ]
12577
12630
  },
12578
12631
  {
12579
- className: "class",
12580
- beginKeywords: "class interface trait",
12581
- end: /[:\{(]|$/,
12582
- excludeEnd: true,
12583
- illegal: "extends implements",
12584
- contains: [
12585
- {
12586
- beginKeywords: "public protected internal private constructor"
12587
- },
12588
- hljs.UNDERSCORE_TITLE_MODE,
12589
- {
12590
- className: "type",
12591
- begin: /</,
12592
- end: />/,
12593
- excludeBegin: true,
12594
- excludeEnd: true,
12595
- relevance: 0
12596
- },
12597
- {
12598
- className: "type",
12599
- begin: /[,:]\s*/,
12600
- end: /[<\(,]|$/,
12601
- excludeBegin: true,
12602
- returnEnd: true
12603
- },
12604
- ANNOTATION_USE_SITE,
12605
- ANNOTATION
12606
- ]
12632
+ className: "class",
12633
+ beginKeywords: "class interface trait",
12634
+ end: /[:\{(]|$/,
12635
+ excludeEnd: true,
12636
+ illegal: "extends implements",
12637
+ contains: [
12638
+ {
12639
+ beginKeywords: "public protected internal private constructor"
12640
+ },
12641
+ hljs.UNDERSCORE_TITLE_MODE,
12642
+ {
12643
+ className: "type",
12644
+ begin: /</,
12645
+ end: />/,
12646
+ excludeBegin: true,
12647
+ excludeEnd: true,
12648
+ relevance: 0
12649
+ },
12650
+ {
12651
+ className: "type",
12652
+ begin: /[,:]\s*/,
12653
+ end: /[<\(,]|$/,
12654
+ excludeBegin: true,
12655
+ returnEnd: true
12656
+ },
12657
+ ANNOTATION_USE_SITE,
12658
+ ANNOTATION
12659
+ ]
12660
+ },
12661
+ STRING,
12662
+ {
12663
+ className: "meta",
12664
+ begin: "^#!/usr/bin/env",
12665
+ end: "$",
12666
+ illegal: "\n"
12667
+ },
12668
+ KOTLIN_NUMBER_MODE
12669
+ ]
12670
+ };
12671
+ }
12672
+ module.exports = $99c6c365e621081e$var$kotlin;
12673
+
12674
+ });
12675
+
12676
+ parcelRegister("gQ9UJ", function(module, exports) {
12677
+ /*
12678
+ Language: Lasso
12679
+ Author: Eric Knibbe <eric@lassosoft.com>
12680
+ Description: Lasso is a language and server platform for database-driven web applications. This definition handles Lasso 9 syntax and LassoScript for Lasso 8.6 and earlier.
12681
+ Website: http://www.lassosoft.com/What-Is-Lasso
12682
+ */ function $c4293165dc24b1d7$var$lasso(hljs) {
12683
+ const LASSO_IDENT_RE = "[a-zA-Z_][\\w.]*";
12684
+ const LASSO_ANGLE_RE = "<\\?(lasso(script)?|=)";
12685
+ const LASSO_CLOSE_RE = "\\]|\\?>";
12686
+ const LASSO_KEYWORDS = {
12687
+ $pattern: LASSO_IDENT_RE + "|&[lg]t;",
12688
+ literal: "true false none minimal full all void and or not bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft",
12689
+ built_in: "array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited currentcapture givenblock",
12690
+ keyword: "cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else fail_if fail_ifnot fail if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome"
12691
+ };
12692
+ const HTML_COMMENT = hljs.COMMENT("<!--", "-->", {
12693
+ relevance: 0
12694
+ });
12695
+ const LASSO_NOPROCESS = {
12696
+ className: "meta",
12697
+ begin: "\\[noprocess\\]",
12698
+ starts: {
12699
+ end: "\\[/noprocess\\]",
12700
+ returnEnd: true,
12701
+ contains: [
12702
+ HTML_COMMENT
12703
+ ]
12704
+ }
12705
+ };
12706
+ const LASSO_START = {
12707
+ className: "meta",
12708
+ begin: "\\[/noprocess|" + LASSO_ANGLE_RE
12709
+ };
12710
+ const LASSO_DATAMEMBER = {
12711
+ className: "symbol",
12712
+ begin: "'" + LASSO_IDENT_RE + "'"
12713
+ };
12714
+ const LASSO_CODE = [
12715
+ hljs.C_LINE_COMMENT_MODE,
12716
+ hljs.C_BLOCK_COMMENT_MODE,
12717
+ hljs.inherit(hljs.C_NUMBER_MODE, {
12718
+ begin: hljs.C_NUMBER_RE + "|(-?infinity|NaN)\\b"
12719
+ }),
12720
+ hljs.inherit(hljs.APOS_STRING_MODE, {
12721
+ illegal: null
12722
+ }),
12723
+ hljs.inherit(hljs.QUOTE_STRING_MODE, {
12724
+ illegal: null
12725
+ }),
12726
+ {
12727
+ className: "string",
12728
+ begin: "`",
12729
+ end: "`"
12730
+ },
12731
+ {
12732
+ variants: [
12733
+ {
12734
+ begin: "[#$]" + LASSO_IDENT_RE
12735
+ },
12736
+ {
12737
+ begin: "#",
12738
+ end: "\\d+",
12739
+ illegal: "\\W"
12740
+ }
12741
+ ]
12742
+ },
12743
+ {
12744
+ className: "type",
12745
+ begin: "::\\s*",
12746
+ end: LASSO_IDENT_RE,
12747
+ illegal: "\\W"
12748
+ },
12749
+ {
12750
+ className: "params",
12751
+ variants: [
12752
+ {
12753
+ begin: "-(?!infinity)" + LASSO_IDENT_RE,
12754
+ relevance: 0
12755
+ },
12756
+ {
12757
+ begin: "(\\.\\.\\.)"
12758
+ }
12759
+ ]
12760
+ },
12761
+ {
12762
+ begin: /(->|\.)\s*/,
12763
+ relevance: 0,
12764
+ contains: [
12765
+ LASSO_DATAMEMBER
12766
+ ]
12767
+ },
12768
+ {
12769
+ className: "class",
12770
+ beginKeywords: "define",
12771
+ returnEnd: true,
12772
+ end: "\\(|=>",
12773
+ contains: [
12774
+ hljs.inherit(hljs.TITLE_MODE, {
12775
+ begin: LASSO_IDENT_RE + "(=(?!>))?|[-+*/%](?!>)"
12776
+ })
12777
+ ]
12778
+ }
12779
+ ];
12780
+ return {
12781
+ name: "Lasso",
12782
+ aliases: [
12783
+ "ls",
12784
+ "lassoscript"
12785
+ ],
12786
+ case_insensitive: true,
12787
+ keywords: LASSO_KEYWORDS,
12788
+ contains: [
12789
+ {
12790
+ className: "meta",
12791
+ begin: LASSO_CLOSE_RE,
12792
+ relevance: 0,
12793
+ starts: {
12794
+ end: "\\[|" + LASSO_ANGLE_RE,
12795
+ returnEnd: true,
12796
+ relevance: 0,
12797
+ contains: [
12798
+ HTML_COMMENT
12799
+ ]
12800
+ }
12801
+ },
12802
+ LASSO_NOPROCESS,
12803
+ LASSO_START,
12804
+ {
12805
+ className: "meta",
12806
+ begin: "\\[no_square_brackets",
12807
+ starts: {
12808
+ end: "\\[/no_square_brackets\\]",
12809
+ keywords: LASSO_KEYWORDS,
12810
+ contains: [
12811
+ {
12812
+ className: "meta",
12813
+ begin: LASSO_CLOSE_RE,
12814
+ relevance: 0,
12815
+ starts: {
12816
+ end: "\\[noprocess\\]|" + LASSO_ANGLE_RE,
12817
+ returnEnd: true,
12818
+ contains: [
12819
+ HTML_COMMENT
12820
+ ]
12821
+ }
12822
+ },
12823
+ LASSO_NOPROCESS,
12824
+ LASSO_START
12825
+ ].concat(LASSO_CODE)
12826
+ }
12607
12827
  },
12608
- STRING,
12609
12828
  {
12610
12829
  className: "meta",
12611
- begin: "^#!/usr/bin/env",
12612
- end: "$",
12613
- illegal: "\n"
12830
+ begin: "\\[",
12831
+ relevance: 0
12614
12832
  },
12615
- KOTLIN_NUMBER_MODE
12616
- ]
12833
+ {
12834
+ className: "meta",
12835
+ begin: "^#!",
12836
+ end: "lasso9$",
12837
+ relevance: 10
12838
+ }
12839
+ ].concat(LASSO_CODE)
12617
12840
  };
12618
12841
  }
12619
- module.exports = $99c6c365e621081e$var$kotlin;
12842
+ module.exports = $c4293165dc24b1d7$var$lasso;
12620
12843
 
12621
12844
  });
12622
12845
 
@@ -25920,35 +26143,146 @@ module.exports = $bd2e259dd188e4ad$var$sas;
25920
26143
 
25921
26144
  });
25922
26145
 
25923
- parcelRegister("4y9fC", function(module, exports) {
26146
+ parcelRegister("gd4OW", function(module, exports) {
25924
26147
  /*
25925
- Language: Shell Session
25926
- Requires: bash.js
25927
- Author: TSUYUSATO Kitsune <make.just.on@gmail.com>
25928
- Category: common
25929
- Audit: 2020
25930
- */ /** @type LanguageFn */ function $3501837396ea252e$var$shell(hljs) {
25931
- return {
25932
- name: "Shell Session",
25933
- aliases: [
25934
- "console"
25935
- ],
25936
- contains: [
26148
+ Language: Scala
26149
+ Category: functional
26150
+ Author: Jan Berkel <jan.berkel@gmail.com>
26151
+ Contributors: Erik Osheim <d_m@plastic-idolatry.com>
26152
+ Website: https://www.scala-lang.org
26153
+ */ function $bcd19983c3eb4916$var$scala(hljs) {
26154
+ const ANNOTATION = {
26155
+ className: "meta",
26156
+ begin: "@[A-Za-z]+"
26157
+ };
26158
+ // used in strings for escaping/interpolation/substitution
26159
+ const SUBST = {
26160
+ className: "subst",
26161
+ variants: [
25937
26162
  {
25938
- className: "meta",
25939
- // We cannot add \s (spaces) in the regular expression otherwise it will be too broad and produce unexpected result.
25940
- // For instance, in the following example, it would match "echo /path/to/home >" as a prompt:
25941
- // echo /path/to/home > t.exe
25942
- begin: /^\s{0,3}[/~\w\d[\]()@-]*[>%$#]/,
25943
- starts: {
25944
- end: /[^\\](?=\s*$)/,
25945
- subLanguage: "bash"
25946
- }
26163
+ begin: "\\$[A-Za-z0-9_]+"
26164
+ },
26165
+ {
26166
+ begin: /\$\{/,
26167
+ end: /\}/
26168
+ }
26169
+ ]
26170
+ };
26171
+ const STRING = {
26172
+ className: "string",
26173
+ variants: [
26174
+ {
26175
+ begin: '"',
26176
+ end: '"',
26177
+ illegal: "\\n",
26178
+ contains: [
26179
+ hljs.BACKSLASH_ESCAPE
26180
+ ]
26181
+ },
26182
+ {
26183
+ begin: '"""',
26184
+ end: '"""',
26185
+ relevance: 10
26186
+ },
26187
+ {
26188
+ begin: '[a-z]+"',
26189
+ end: '"',
26190
+ illegal: "\\n",
26191
+ contains: [
26192
+ hljs.BACKSLASH_ESCAPE,
26193
+ SUBST
26194
+ ]
26195
+ },
26196
+ {
26197
+ className: "string",
26198
+ begin: '[a-z]+"""',
26199
+ end: '"""',
26200
+ contains: [
26201
+ SUBST
26202
+ ],
26203
+ relevance: 10
25947
26204
  }
25948
26205
  ]
25949
26206
  };
26207
+ const SYMBOL = {
26208
+ className: "symbol",
26209
+ begin: "'\\w[\\w\\d_]*(?!')"
26210
+ };
26211
+ const TYPE = {
26212
+ className: "type",
26213
+ begin: "\\b[A-Z][A-Za-z0-9_]*",
26214
+ relevance: 0
26215
+ };
26216
+ const NAME = {
26217
+ className: "title",
26218
+ begin: /[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/,
26219
+ relevance: 0
26220
+ };
26221
+ const CLASS = {
26222
+ className: "class",
26223
+ beginKeywords: "class object trait type",
26224
+ end: /[:={\[\n;]/,
26225
+ excludeEnd: true,
26226
+ contains: [
26227
+ hljs.C_LINE_COMMENT_MODE,
26228
+ hljs.C_BLOCK_COMMENT_MODE,
26229
+ {
26230
+ beginKeywords: "extends with",
26231
+ relevance: 10
26232
+ },
26233
+ {
26234
+ begin: /\[/,
26235
+ end: /\]/,
26236
+ excludeBegin: true,
26237
+ excludeEnd: true,
26238
+ relevance: 0,
26239
+ contains: [
26240
+ TYPE
26241
+ ]
26242
+ },
26243
+ {
26244
+ className: "params",
26245
+ begin: /\(/,
26246
+ end: /\)/,
26247
+ excludeBegin: true,
26248
+ excludeEnd: true,
26249
+ relevance: 0,
26250
+ contains: [
26251
+ TYPE
26252
+ ]
26253
+ },
26254
+ NAME
26255
+ ]
26256
+ };
26257
+ const METHOD = {
26258
+ className: "function",
26259
+ beginKeywords: "def",
26260
+ end: /[:={\[(\n;]/,
26261
+ excludeEnd: true,
26262
+ contains: [
26263
+ NAME
26264
+ ]
26265
+ };
26266
+ return {
26267
+ name: "Scala",
26268
+ keywords: {
26269
+ literal: "true false null",
26270
+ keyword: "type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit"
26271
+ },
26272
+ contains: [
26273
+ hljs.C_LINE_COMMENT_MODE,
26274
+ hljs.C_BLOCK_COMMENT_MODE,
26275
+ STRING,
26276
+ SYMBOL,
26277
+ TYPE,
26278
+ METHOD,
26279
+ CLASS,
26280
+ hljs.C_NUMBER_MODE,
26281
+ ANNOTATION
26282
+ ]
26283
+ };
25950
26284
  }
25951
- module.exports = $3501837396ea252e$var$shell;
26285
+ module.exports = $bcd19983c3eb4916$var$scala;
25952
26286
 
25953
26287
  });
25954
26288
 
@@ -26306,6 +26640,38 @@ module.exports = $9be3819e1d7933c2$var$scss;
26306
26640
 
26307
26641
  });
26308
26642
 
26643
+ parcelRegister("4y9fC", function(module, exports) {
26644
+ /*
26645
+ Language: Shell Session
26646
+ Requires: bash.js
26647
+ Author: TSUYUSATO Kitsune <make.just.on@gmail.com>
26648
+ Category: common
26649
+ Audit: 2020
26650
+ */ /** @type LanguageFn */ function $3501837396ea252e$var$shell(hljs) {
26651
+ return {
26652
+ name: "Shell Session",
26653
+ aliases: [
26654
+ "console"
26655
+ ],
26656
+ contains: [
26657
+ {
26658
+ className: "meta",
26659
+ // We cannot add \s (spaces) in the regular expression otherwise it will be too broad and produce unexpected result.
26660
+ // For instance, in the following example, it would match "echo /path/to/home >" as a prompt:
26661
+ // echo /path/to/home > t.exe
26662
+ begin: /^\s{0,3}[/~\w\d[\]()@-]*[>%$#]/,
26663
+ starts: {
26664
+ end: /[^\\](?=\s*$)/,
26665
+ subLanguage: "bash"
26666
+ }
26667
+ }
26668
+ ]
26669
+ };
26670
+ }
26671
+ module.exports = $3501837396ea252e$var$shell;
26672
+
26673
+ });
26674
+
26309
26675
  parcelRegister("g3mE4", function(module, exports) {
26310
26676
  /*
26311
26677
  Language: Smali
@@ -34397,7 +34763,7 @@ $9baaebd05a4e0c25$exports.registerLanguage("axapta", (parcelRequire("2kyoL")));
34397
34763
 
34398
34764
  $9baaebd05a4e0c25$exports.registerLanguage("bash", (parcelRequire("f4C7M")));
34399
34765
 
34400
- $9baaebd05a4e0c25$exports.registerLanguage("basic", $c2e98e78b0affb4c$import$d3af507014bccb08);
34766
+ $9baaebd05a4e0c25$exports.registerLanguage("basic", (parcelRequire("bXsnb")));
34401
34767
 
34402
34768
  $9baaebd05a4e0c25$exports.registerLanguage("bnf", (parcelRequire("kbrFI")));
34403
34769
 
@@ -34543,7 +34909,7 @@ $9baaebd05a4e0c25$exports.registerLanguage("julia-repl", (parcelRequire("dut0F")
34543
34909
 
34544
34910
  $9baaebd05a4e0c25$exports.registerLanguage("kotlin", (parcelRequire("dcxZy")));
34545
34911
 
34546
- $9baaebd05a4e0c25$exports.registerLanguage("lasso", $c2e98e78b0affb4c$import$ff18e155da20a110);
34912
+ $9baaebd05a4e0c25$exports.registerLanguage("lasso", (parcelRequire("gQ9UJ")));
34547
34913
 
34548
34914
  $9baaebd05a4e0c25$exports.registerLanguage("latex", (parcelRequire("Hvsp9")));
34549
34915
 
@@ -34664,7 +35030,7 @@ $9baaebd05a4e0c25$exports.registerLanguage("rust", (parcelRequire("5ve2q")));
34664
35030
 
34665
35031
  $9baaebd05a4e0c25$exports.registerLanguage("sas", (parcelRequire("gf082")));
34666
35032
 
34667
- $9baaebd05a4e0c25$exports.registerLanguage("scala", $c2e98e78b0affb4c$import$f30d2cb50052b6e9);
35033
+ $9baaebd05a4e0c25$exports.registerLanguage("scala", (parcelRequire("gd4OW")));
34668
35034
 
34669
35035
  $9baaebd05a4e0c25$exports.registerLanguage("scheme", (parcelRequire("ceY6a")));
34670
35036