Skip to content

Commit

Permalink
release 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Shahar Soel committed Sep 5, 2015
1 parent b7d13be commit 32cc76a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ deploy:
api_key:
secure: DNq1wbqLPHVpJPDx9O89HZM+RJB6v2R7/wk8pok7Z8NT72kUWdvbqcThGhczPO4sZ8cUTJ3ergTCE8hs9mynlR/lX6932U4fj4+uICQL9+G+deBB/t2SNyTBllkE64WrJ9BKmQvIk/Chh7ZJOM0Fro3p2BIq3JsVnfYg1tZ3U5o=
file:
- package/chevrotain-binaries-0.5.4.zip
- package/chevrotain-binaries-0.5.4.tar.gz
- package/chevrotain-binaries-0.5.5.zip
- package/chevrotain-binaries-0.5.5.tar.gz
on:
tags : true
all_branches: true
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chevrotain",
"version": "0.5.4",
"version": "0.5.5",
"description": "Chevrotain is a high performance fault Tolerant Javascript parsing DSL for building recursive decent parsers",
"main": "release/chevrotain.js",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chevrotain",
"version": "0.5.4",
"version": "0.5.5",
"description": "Chevrotain is a high performance fault Tolerant Javascript parsing DSL for building recursive decent parsers",
"keywords": [
"parser",
Expand Down
2 changes: 1 addition & 1 deletion release/chevrotain.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! chevrotain - v0.5.4 - 2015-09-05 */
/*! chevrotain - v0.5.5 - 2015-09-06 */
declare module chevrotain {
module lang {
class HashTable<V>{}
Expand Down
8 changes: 4 additions & 4 deletions release/chevrotain.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
}(this, function (_) {

/*! chevrotain - v0.5.4 - 2015-09-05 */
/*! chevrotain - v0.5.5 - 2015-09-06 */
var chevrotain;
(function (chevrotain) {
var lang;
Expand Down Expand Up @@ -3477,14 +3477,14 @@ var chevrotain;
this.RULE_STACK = newState.RULE_STACK;
};
Parser.prototype.raiseNoAltException = function (occurrence, errMsgTypes) {
var errSuffix = " but found '" + this.NEXT_TOKEN().image + "'";
var errSuffix = " but found: '" + this.NEXT_TOKEN().image + "'";
if (errMsgTypes === undefined) {
var ruleName = _.last(this.RULE_STACK);
var ruleGrammar = this.getGAstProductions().get(ruleName);
var nextTokens = new interp.NextInsideOrWalker(ruleGrammar, occurrence).startWalking();
var nextTokensFlat = _.flatten(nextTokens);
var nextTokensNames = _.map(nextTokensFlat, function (currTokenClass) { return chevrotain.tokenName(currTokenClass); });
errMsgTypes = "one of: <" + nextTokensNames.join(" ,") + "}>";
errMsgTypes = "one of: <" + nextTokensNames.join(" ,") + ">";
}
throw this.SAVE_ERROR(new exceptions.NoViableAltException("expecting: " + errMsgTypes + " " + errSuffix, this.NEXT_TOKEN()));
};
Expand Down Expand Up @@ -3513,7 +3513,7 @@ var API = {};
/* istanbul ignore next */
if (!testMode) {
// semantic version
API.VERSION = "0.5.4";
API.VERSION = "0.5.5";
// runtime API
API.Parser = chevrotain.Parser;
API.Lexer = chevrotain.Lexer;
Expand Down
2 changes: 1 addition & 1 deletion src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let API:any = {}
/* istanbul ignore next */
if (!testMode) {
// semantic version
API.VERSION = "0.5.4";
API.VERSION = "0.5.5";

// runtime API
API.Parser = chevrotain.Parser
Expand Down

0 comments on commit 32cc76a

Please sign in to comment.