@ -49,7 +49,7 @@ PEG.grammarParser = (function(){
_parse _grammar : function ( context ) {
var cacheKey = "grammar" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -100,7 +100,7 @@ PEG.grammarParser = (function(){
_parse _rule : function ( context ) {
var cacheKey = "rule" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -175,7 +175,7 @@ PEG.grammarParser = (function(){
_parse _expression : function ( context ) {
var cacheKey = "expression" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -197,7 +197,7 @@ PEG.grammarParser = (function(){
_parse _choice : function ( context ) {
var cacheKey = "choice" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -279,7 +279,7 @@ PEG.grammarParser = (function(){
_parse _sequence : function ( context ) {
var cacheKey = "sequence" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -359,7 +359,7 @@ PEG.grammarParser = (function(){
_parse _prefixed : function ( context ) {
var cacheKey = "prefixed" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -428,7 +428,7 @@ PEG.grammarParser = (function(){
_parse _suffixed : function ( context ) {
var cacheKey = "suffixed" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -518,7 +518,7 @@ PEG.grammarParser = (function(){
_parse _primary : function ( context ) {
var cacheKey = "primary" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -653,7 +653,7 @@ PEG.grammarParser = (function(){
_parse _action : function ( context ) {
var cacheKey = "action" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -694,7 +694,7 @@ PEG.grammarParser = (function(){
_parse _braced : function ( context ) {
var cacheKey = "braced" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -779,7 +779,7 @@ PEG.grammarParser = (function(){
_parse _nonBraceCharacters : function ( context ) {
var cacheKey = "nonBraceCharacters" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -813,7 +813,7 @@ PEG.grammarParser = (function(){
_parse _nonBraceCharacter : function ( context ) {
var cacheKey = "nonBraceCharacter" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -846,7 +846,7 @@ PEG.grammarParser = (function(){
_parse _colon : function ( context ) {
var cacheKey = "colon" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -892,7 +892,7 @@ PEG.grammarParser = (function(){
_parse _slash : function ( context ) {
var cacheKey = "slash" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -938,7 +938,7 @@ PEG.grammarParser = (function(){
_parse _and : function ( context ) {
var cacheKey = "and" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -984,7 +984,7 @@ PEG.grammarParser = (function(){
_parse _not : function ( context ) {
var cacheKey = "not" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -1030,7 +1030,7 @@ PEG.grammarParser = (function(){
_parse _question : function ( context ) {
var cacheKey = "question" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -1076,7 +1076,7 @@ PEG.grammarParser = (function(){
_parse _star : function ( context ) {
var cacheKey = "star" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -1122,7 +1122,7 @@ PEG.grammarParser = (function(){
_parse _plus : function ( context ) {
var cacheKey = "plus" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -1168,7 +1168,7 @@ PEG.grammarParser = (function(){
_parse _lparen : function ( context ) {
var cacheKey = "lparen" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -1214,7 +1214,7 @@ PEG.grammarParser = (function(){
_parse _rparen : function ( context ) {
var cacheKey = "rparen" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -1260,7 +1260,7 @@ PEG.grammarParser = (function(){
_parse _dot : function ( context ) {
var cacheKey = "dot" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -1306,7 +1306,7 @@ PEG.grammarParser = (function(){
_parse _identifier : function ( context ) {
var cacheKey = "identifier" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -1463,7 +1463,7 @@ PEG.grammarParser = (function(){
_parse _literal : function ( context ) {
var cacheKey = "literal" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -1514,7 +1514,7 @@ PEG.grammarParser = (function(){
_parse _doubleQuotedLiteral : function ( context ) {
var cacheKey = "doubleQuotedLiteral" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -1579,7 +1579,7 @@ PEG.grammarParser = (function(){
_parse _doubleQuotedCharacter : function ( context ) {
var cacheKey = "doubleQuotedCharacter" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -1631,7 +1631,7 @@ PEG.grammarParser = (function(){
_parse _simpleDoubleQuotedCharacter : function ( context ) {
var cacheKey = "simpleDoubleQuotedCharacter" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -1718,7 +1718,7 @@ PEG.grammarParser = (function(){
_parse _singleQuotedLiteral : function ( context ) {
var cacheKey = "singleQuotedLiteral" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -1783,7 +1783,7 @@ PEG.grammarParser = (function(){
_parse _singleQuotedCharacter : function ( context ) {
var cacheKey = "singleQuotedCharacter" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -1835,7 +1835,7 @@ PEG.grammarParser = (function(){
_parse _simpleSingleQuotedCharacter : function ( context ) {
var cacheKey = "simpleSingleQuotedCharacter" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -1922,7 +1922,7 @@ PEG.grammarParser = (function(){
_parse _class : function ( context ) {
var cacheKey = "class" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2033,7 +2033,7 @@ PEG.grammarParser = (function(){
_parse _classCharacterRange : function ( context ) {
var cacheKey = "classCharacterRange" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2099,7 +2099,7 @@ PEG.grammarParser = (function(){
_parse _classCharacter : function ( context ) {
var cacheKey = "classCharacter" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2126,7 +2126,7 @@ PEG.grammarParser = (function(){
_parse _bracketDelimitedCharacter : function ( context ) {
var cacheKey = "bracketDelimitedCharacter" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2178,7 +2178,7 @@ PEG.grammarParser = (function(){
_parse _simpleBracketDelimitedCharacter : function ( context ) {
var cacheKey = "simpleBracketDelimitedCharacter" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2265,7 +2265,7 @@ PEG.grammarParser = (function(){
_parse _simpleEscapeSequence : function ( context ) {
var cacheKey = "simpleEscapeSequence" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2379,7 +2379,7 @@ PEG.grammarParser = (function(){
_parse _zeroEscapeSequence : function ( context ) {
var cacheKey = "zeroEscapeSequence" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2435,7 +2435,7 @@ PEG.grammarParser = (function(){
_parse _hexEscapeSequence : function ( context ) {
var cacheKey = "hexEscapeSequence" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2489,7 +2489,7 @@ PEG.grammarParser = (function(){
_parse _unicodeEscapeSequence : function ( context ) {
var cacheKey = "unicodeEscapeSequence" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2555,7 +2555,7 @@ PEG.grammarParser = (function(){
_parse _eolEscapeSequence : function ( context ) {
var cacheKey = "eolEscapeSequence" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2601,7 +2601,7 @@ PEG.grammarParser = (function(){
_parse _digit : function ( context ) {
var cacheKey = "digit" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2631,7 +2631,7 @@ PEG.grammarParser = (function(){
_parse _hexDigit : function ( context ) {
var cacheKey = "hexDigit" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2661,7 +2661,7 @@ PEG.grammarParser = (function(){
_parse _letter : function ( context ) {
var cacheKey = "letter" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2693,7 +2693,7 @@ PEG.grammarParser = (function(){
_parse _lowerCaseLetter : function ( context ) {
var cacheKey = "lowerCaseLetter" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2723,7 +2723,7 @@ PEG.grammarParser = (function(){
_parse _upperCaseLetter : function ( context ) {
var cacheKey = "upperCaseLetter" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2753,7 +2753,7 @@ PEG.grammarParser = (function(){
_parse _ _ _ : function ( context ) {
var cacheKey = "__" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2810,7 +2810,7 @@ PEG.grammarParser = (function(){
_parse _comment : function ( context ) {
var cacheKey = "comment" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2845,7 +2845,7 @@ PEG.grammarParser = (function(){
_parse _singleLineComment : function ( context ) {
var cacheKey = "singleLineComment" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -2955,7 +2955,7 @@ PEG.grammarParser = (function(){
_parse _multiLineComment : function ( context ) {
var cacheKey = "multiLineComment" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -3095,7 +3095,7 @@ PEG.grammarParser = (function(){
_parse _eol : function ( context ) {
var cacheKey = "eol" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -3185,7 +3185,7 @@ PEG.grammarParser = (function(){
_parse _eolChar : function ( context ) {
var cacheKey = "eolChar" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}
@ -3215,7 +3215,7 @@ PEG.grammarParser = (function(){
_parse _whitespace : function ( context ) {
var cacheKey = "whitespace" + '@' + this . _pos ;
var cachedResult = this . _cache [ cacheKey ] ;
if ( cachedResult !== undefined ) {
if ( cachedResult ) {
this . _pos = cachedResult . nextPos ;
return cachedResult . result ;
}