: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: http://codemirror.net/LICENSE
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(require("../../lib/codemirror"));
else if (typeof define == "function" && define.amd) // AMD
define(["../../lib/codemirror"], mod);
else // Plain browser env
})(function(CodeMirror) {
CodeMirror.defineMode("sparql", function(config) {
var indentUnit = config.indentUnit;
function wordRegexp(words) {
return new RegExp("^(?:" + words.join("|") + ")$", "i");
var ops = wordRegexp(["str", "lang", "langmatches", "datatype", "bound", "sameterm", "isiri", "isuri",
"iri", "uri", "bnode", "count", "sum", "min", "max", "avg", "sample",
"group_concat", "rand", "abs", "ceil", "floor", "round", "concat", "substr", "strlen",
"replace", "ucase", "lcase", "encode_for_uri", "contains", "strstarts", "strends",
"strbefore", "strafter", "year", "month", "day", "hours", "minutes", "seconds",
"timezone", "tz", "now", "uuid", "struuid", "md5", "sha1", "sha256", "sha384",
"sha512", "coalesce", "if", "strlang", "strdt", "isnumeric", "regex", "exists",
"isblank", "isliteral", "a", "bind"]);
var keywords = wordRegexp(["base", "prefix", "select", "distinct", "reduced", "construct", "describe",
"ask", "from", "named", "where", "order", "limit", "offset", "filter", "optional",
"graph", "by", "asc", "desc", "as", "having", "undef", "values", "group",
"minus", "in", "not", "service", "silent", "using", "insert", "delete", "union",
"data", "copy", "to", "move", "add", "create", "drop", "clear", "load"]);
var operatorChars = /[*+\-<>=&|\^\/!\?]/;
function tokenBase(stream, state) {
if (ch == "$" || ch == "?") {
if(ch == "?" && stream.match(/\s/, false)){
stream.match(/^[\w\d]*/);
else if (ch == "<" && !stream.match(/^[\s\u00a0=]/, false)) {
stream.match(/^[^\s\u00a0>]*>?/);
else if (ch == "\"" || ch == "'") {
state.tokenize = tokenLiteral(ch);
return state.tokenize(stream, state);
else if (/[{}\(\),\.;\[\]]/.test(ch)) {
else if (operatorChars.test(ch)) {
stream.eatWhile(operatorChars);
stream.eatWhile(/[\w\d\._\-]/);
stream.eatWhile(/[a-z\d\-]/i);
stream.eatWhile(/[_\w\d]/);
stream.eatWhile(/[\w\d_\-]/);
var word = stream.current();
else if (keywords.test(word))
function tokenLiteral(quote) {
return function(stream, state) {
while ((ch = stream.next()) != null) {
if (ch == quote && !escaped) {
state.tokenize = tokenBase;
escaped = !escaped && ch == "\\";
function pushContext(state, type, col) {
state.context = {prev: state.context, indent: state.indent, col: col, type: type};
function popContext(state) {
state.indent = state.context.indent;
state.context = state.context.prev;
return {tokenize: tokenBase,
token: function(stream, state) {
if (state.context && state.context.align == null) state.context.align = false;
state.indent = stream.indentation();
if (stream.eatSpace()) return null;
var style = state.tokenize(stream, state);
if (style != "comment" && state.context && state.context.align == null && state.context.type != "pattern") {
state.context.align = true;
if (curPunc == "(") pushContext(state, ")", stream.column());
else if (curPunc == "[") pushContext(state, "]", stream.column());
else if (curPunc == "{") pushContext(state, "}", stream.column());
else if (/[\]\}\)]/.test(curPunc)) {
while (state.context && state.context.type == "pattern") popContext(state);
if (state.context && curPunc == state.context.type) {
if (curPunc == "}" && state.context && state.context.type == "pattern")
else if (curPunc == "." && state.context && state.context.type == "pattern") popContext(state);
else if (/atom|string|variable/.test(style) && state.context) {
if (/[\}\]]/.test(state.context.type))
pushContext(state, "pattern", stream.column());
else if (state.context.type == "pattern" && !state.context.align) {
state.context.align = true;
state.context.col = stream.column();
indent: function(state, textAfter) {
var firstChar = textAfter && textAfter.charAt(0);
var context = state.context;
if (/[\]\}]/.test(firstChar))
while (context && context.type == "pattern") context = context.prev;
var closing = context && firstChar == context.type;
else if (context.type == "pattern")
return context.col + (closing ? 0 : 1);
return context.indent + (closing ? 0 : indentUnit);
CodeMirror.defineMIME("application/sparql-query", "sparql");