Skip to content

Commit

Permalink
cleanup and release v1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
nightwing committed Dec 3, 2016
1 parent 859a681 commit f757c85
Show file tree
Hide file tree
Showing 11 changed files with 31,574 additions and 10,615 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.txt
@@ -1,3 +1,8 @@
2016.12.03 Version 1.2.6

* Fixed IME handling on new Chrome
* Support for php 7 in the syntax checker

2016.08.16 Version 1.2.5

* Fixed regression in noconflict mode
Expand Down
2 changes: 1 addition & 1 deletion build
Submodule build updated 654 files
2 changes: 1 addition & 1 deletion doc/wiki
Submodule wiki updated from d93670 to 56ef85
2 changes: 1 addition & 1 deletion lib/ace/ace.js
Expand Up @@ -128,5 +128,5 @@ exports.createEditSession = function(text, mode) {
}
exports.EditSession = EditSession;
exports.UndoManager = UndoManager;
exports.version = "1.2.5";
exports.version = "1.2.6";
});
38 changes: 27 additions & 11 deletions lib/ace/mode/xquery/jsoniq_lexer.js
@@ -1,6 +1,28 @@
define(function(require, exports, module) {
module.exports = (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({
1:[function(_dereq_,module,exports){
module.exports = (function outer (modules, cache, entry) {
var previousRequire = typeof require == "function" && require;
function newRequire(name, jumped){
if(!cache[name]) {
if(!modules[name]) {
var currentRequire = typeof require == "function" && require;
if (!jumped && currentRequire) return currentRequire(name, true);
if (previousRequire) return previousRequire(name, true);
var err = new Error('Cannot find module \'' + name + '\'');
err.code = 'MODULE_NOT_FOUND';
throw err;
}
var m = cache[name] = {exports:{}};
modules[name][0].call(m.exports, function(x){
var id = modules[name][1][x];
return newRequire(id ? id : x);
},m,m.exports,outer,modules,cache,entry);
}
return cache[name].exports;
}
for(var i=0;i<entry.length;i++) newRequire(entry[i]);
return newRequire(entry[0]);
})
({"/node_modules/xqlint/lib/lexers/JSONiqTokenizer.js":[function(_dereq_,module,exports){
// This file was generated on Thu Jul 24, 2014 15:01 (UTC+01) by REx v5.30 which is Copyright (c) 1979-2014 by Gunther Rademacher <grd@gmx.net>
// REx command line: JSONiqTokenizer.ebnf -ll 2 -backtrack -tree -javascript -a xqlint

Expand Down Expand Up @@ -4206,9 +4228,7 @@ JSONiqTokenizer.TOKEN =

// End

},
{}],
2:[function(_dereq_,module,exports){
},{}],"/node_modules/xqlint/lib/lexers/jsoniq_lexer.js":[function(_dereq_,module,exports){
'use strict';

var JSONiqTokenizer = _dereq_('./JSONiqTokenizer').JSONiqTokenizer;
Expand Down Expand Up @@ -4343,9 +4363,7 @@ var Rules = {
};

exports.JSONiqLexer = function(){ return new Lexer(JSONiqTokenizer, Rules); };
},
{"./JSONiqTokenizer":1,"./lexer":3}],
3:[function(_dereq_,module,exports){
},{"./JSONiqTokenizer":"/node_modules/xqlint/lib/lexers/JSONiqTokenizer.js","./lexer":"/node_modules/xqlint/lib/lexers/lexer.js"}],"/node_modules/xqlint/lib/lexers/lexer.js":[function(_dereq_,module,exports){
'use strict';

var TokenHandler = function(code) {
Expand Down Expand Up @@ -4446,8 +4464,6 @@ exports.Lexer = function(Tokenizer, Rules) {
};
};
};
},
{}]},{},[2])
(2)
},{}]},{},["/node_modules/xqlint/lib/lexers/jsoniq_lexer.js"]);

});

0 comments on commit f757c85

Please sign in to comment.