knowledgebase_law/node_modules/.vite/deps/chunk-B4WUNITN.js
2025-04-11 11:47:09 -04:00

58 lines
1.4 KiB
JavaScript

import {
__commonJS
} from "./chunk-2TUXWMP5.js";
// node_modules/refractor/lang/smalltalk.js
var require_smalltalk = __commonJS({
"node_modules/refractor/lang/smalltalk.js"(exports, module) {
module.exports = smalltalk;
smalltalk.displayName = "smalltalk";
smalltalk.aliases = [];
function smalltalk(Prism) {
Prism.languages.smalltalk = {
comment: {
pattern: /"(?:""|[^"])*"/,
greedy: true
},
char: {
pattern: /\$./,
greedy: true
},
string: {
pattern: /'(?:''|[^'])*'/,
greedy: true
},
symbol: /#[\da-z]+|#(?:-|([+\/\\*~<>=@%|&?!])\1?)|#(?=\()/i,
"block-arguments": {
pattern: /(\[\s*):[^\[|]*\|/,
lookbehind: true,
inside: {
variable: /:[\da-z]+/i,
punctuation: /\|/
}
},
"temporary-variables": {
pattern: /\|[^|]+\|/,
inside: {
variable: /[\da-z]+/i,
punctuation: /\|/
}
},
keyword: /\b(?:new|nil|self|super)\b/,
boolean: /\b(?:false|true)\b/,
number: [
/\d+r-?[\dA-Z]+(?:\.[\dA-Z]+)?(?:e-?\d+)?/,
/\b\d+(?:\.\d+)?(?:e-?\d+)?/
],
operator: /[<=]=?|:=|~[~=]|\/\/?|\\\\|>[>=]?|[!^+\-*&|,@]/,
punctuation: /[.;:?\[\](){}]/
};
}
}
});
export {
require_smalltalk
};
//# sourceMappingURL=chunk-B4WUNITN.js.map