You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
2.4 KiB
JavaScript
96 lines
2.4 KiB
JavaScript
"use strict";
|
|
(self["webpackChunk_JUPYTERLAB_CORE_OUTPUT"] = self["webpackChunk_JUPYTERLAB_CORE_OUTPUT"] || []).push([[1941],{
|
|
|
|
/***/ 41941:
|
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
|
|
__webpack_require__.r(__webpack_exports__);
|
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
/* harmony export */ cmake: () => (/* binding */ cmake)
|
|
/* harmony export */ });
|
|
var variable_regex = /({)?[a-zA-Z0-9_]+(})?/;
|
|
|
|
function tokenString(stream, state) {
|
|
var current, prev, found_var = false;
|
|
while (!stream.eol() && (current = stream.next()) != state.pending) {
|
|
if (current === '$' && prev != '\\' && state.pending == '"') {
|
|
found_var = true;
|
|
break;
|
|
}
|
|
prev = current;
|
|
}
|
|
if (found_var) {
|
|
stream.backUp(1);
|
|
}
|
|
if (current == state.pending) {
|
|
state.continueString = false;
|
|
} else {
|
|
state.continueString = true;
|
|
}
|
|
return "string";
|
|
}
|
|
|
|
function tokenize(stream, state) {
|
|
var ch = stream.next();
|
|
|
|
// Have we found a variable?
|
|
if (ch === '$') {
|
|
if (stream.match(variable_regex)) {
|
|
return 'variableName.special';
|
|
}
|
|
return 'variable';
|
|
}
|
|
// Should we still be looking for the end of a string?
|
|
if (state.continueString) {
|
|
// If so, go through the loop again
|
|
stream.backUp(1);
|
|
return tokenString(stream, state);
|
|
}
|
|
// Do we just have a function on our hands?
|
|
// In 'cmake_minimum_required (VERSION 2.8.8)', 'cmake_minimum_required' is matched
|
|
if (stream.match(/(\s+)?\w+\(/) || stream.match(/(\s+)?\w+\ \(/)) {
|
|
stream.backUp(1);
|
|
return 'def';
|
|
}
|
|
if (ch == "#") {
|
|
stream.skipToEnd();
|
|
return "comment";
|
|
}
|
|
// Have we found a string?
|
|
if (ch == "'" || ch == '"') {
|
|
// Store the type (single or double)
|
|
state.pending = ch;
|
|
// Perform the looping function to find the end
|
|
return tokenString(stream, state);
|
|
}
|
|
if (ch == '(' || ch == ')') {
|
|
return 'bracket';
|
|
}
|
|
if (ch.match(/[0-9]/)) {
|
|
return 'number';
|
|
}
|
|
stream.eatWhile(/[\w-]/);
|
|
return null;
|
|
}
|
|
const cmake = {
|
|
name: "cmake",
|
|
startState: function () {
|
|
var state = {};
|
|
state.inDefinition = false;
|
|
state.inInclude = false;
|
|
state.continueString = false;
|
|
state.pending = false;
|
|
return state;
|
|
},
|
|
token: function (stream, state) {
|
|
if (stream.eatSpace()) return null;
|
|
return tokenize(stream, state);
|
|
}
|
|
};
|
|
|
|
|
|
|
|
/***/ })
|
|
|
|
}]);
|
|
//# sourceMappingURL=1941.b15cc60637b0a879bea6.js.map?v=b15cc60637b0a879bea6
|