3954 lines
106 KiB
JavaScript
3954 lines
106 KiB
JavaScript
/*! Dust - Asynchronous Templating - v2.4.2
|
|
* http://linkedin.github.io/dustjs/
|
|
* Copyright (c) 2014 Aleksander Williams; Released under the MIT License */
|
|
(function(root) {
|
|
var dust = {},
|
|
NONE = 'NONE',
|
|
ERROR = 'ERROR',
|
|
WARN = 'WARN',
|
|
INFO = 'INFO',
|
|
DEBUG = 'DEBUG',
|
|
loggingLevels = [DEBUG, INFO, WARN, ERROR, NONE],
|
|
EMPTY_FUNC = function() {},
|
|
logger = {},
|
|
originalLog,
|
|
loggerContext;
|
|
|
|
dust.debugLevel = NONE;
|
|
|
|
// Try to find the console in global scope
|
|
if (root && root.console && root.console.log) {
|
|
loggerContext = root.console;
|
|
originalLog = root.console.log;
|
|
}
|
|
|
|
// robust logger for node.js, modern browsers, and IE <= 9.
|
|
logger.log = loggerContext ? function() {
|
|
// Do this for normal browsers
|
|
if (typeof originalLog === 'function') {
|
|
logger.log = function() {
|
|
originalLog.apply(loggerContext, arguments);
|
|
};
|
|
} else {
|
|
// Do this for IE <= 9
|
|
logger.log = function() {
|
|
var message = Array.prototype.slice.apply(arguments).join(' ');
|
|
originalLog(message);
|
|
};
|
|
}
|
|
logger.log.apply(this, arguments);
|
|
} : function() { /* no op */ };
|
|
|
|
/**
|
|
* Log dust debug statements, info statements, warning statements, and errors.
|
|
* Filters out the messages based on the dust.debuglevel.
|
|
* This default implementation will print to the console if it exists.
|
|
* @param {String|Error} message the message to print/throw
|
|
* @param {String} type the severity of the message(ERROR, WARN, INFO, or DEBUG)
|
|
* @public
|
|
*/
|
|
dust.log = function(message, type) {
|
|
type = type || INFO;
|
|
if (dust.debugLevel !== NONE && dust.indexInArray(loggingLevels, type) >= dust.indexInArray(loggingLevels, dust.debugLevel)) {
|
|
if(!dust.logQueue) {
|
|
dust.logQueue = [];
|
|
}
|
|
dust.logQueue.push({message: message, type: type});
|
|
logger.log('[DUST ' + type + ']: ' + message);
|
|
}
|
|
};
|
|
|
|
dust.helpers = {};
|
|
|
|
dust.cache = {};
|
|
|
|
dust.register = function(name, tmpl) {
|
|
if (!name) {
|
|
return;
|
|
}
|
|
dust.cache[name] = tmpl;
|
|
};
|
|
|
|
dust.render = function(name, context, callback) {
|
|
var chunk = new Stub(callback).head;
|
|
try {
|
|
dust.load(name, chunk, Context.wrap(context, name)).end();
|
|
} catch (err) {
|
|
chunk.setError(err);
|
|
}
|
|
};
|
|
|
|
dust.stream = function(name, context) {
|
|
var stream = new Stream(),
|
|
chunk = stream.head;
|
|
dust.nextTick(function() {
|
|
try {
|
|
dust.load(name, stream.head, Context.wrap(context, name)).end();
|
|
} catch (err) {
|
|
chunk.setError(err);
|
|
}
|
|
});
|
|
return stream;
|
|
};
|
|
|
|
dust.renderSource = function(source, context, callback) {
|
|
return dust.compileFn(source)(context, callback);
|
|
};
|
|
|
|
dust.compileFn = function(source, name) {
|
|
// name is optional. When name is not provided the template can only be rendered using the callable returned by this function.
|
|
// If a name is provided the compiled template can also be rendered by name.
|
|
name = name || null;
|
|
var tmpl = dust.loadSource(dust.compile(source, name));
|
|
return function(context, callback) {
|
|
var master = callback ? new Stub(callback) : new Stream();
|
|
dust.nextTick(function() {
|
|
if(typeof tmpl === 'function') {
|
|
tmpl(master.head, Context.wrap(context, name)).end();
|
|
}
|
|
else {
|
|
dust.log(new Error('Template [' + name + '] cannot be resolved to a Dust function'), ERROR);
|
|
}
|
|
});
|
|
return master;
|
|
};
|
|
};
|
|
|
|
dust.load = function(name, chunk, context) {
|
|
var tmpl = dust.cache[name];
|
|
if (tmpl) {
|
|
return tmpl(chunk, context);
|
|
} else {
|
|
if (dust.onLoad) {
|
|
return chunk.map(function(chunk) {
|
|
dust.onLoad(name, function(err, src) {
|
|
if (err) {
|
|
return chunk.setError(err);
|
|
}
|
|
if (!dust.cache[name]) {
|
|
dust.loadSource(dust.compile(src, name));
|
|
}
|
|
dust.cache[name](chunk, context).end();
|
|
});
|
|
});
|
|
}
|
|
return chunk.setError(new Error('Template Not Found: ' + name));
|
|
}
|
|
};
|
|
|
|
dust.loadSource = function(source, path) {
|
|
return eval(source);
|
|
};
|
|
|
|
if (Array.isArray) {
|
|
dust.isArray = Array.isArray;
|
|
} else {
|
|
dust.isArray = function(arr) {
|
|
return Object.prototype.toString.call(arr) === '[object Array]';
|
|
};
|
|
}
|
|
|
|
// indexOf shim for arrays for IE <= 8
|
|
// source: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf
|
|
dust.indexInArray = function(arr, item, fromIndex) {
|
|
fromIndex = +fromIndex || 0;
|
|
if (Array.prototype.indexOf) {
|
|
return arr.indexOf(item, fromIndex);
|
|
} else {
|
|
if ( arr === undefined || arr === null ) {
|
|
throw new TypeError( 'cannot call method "indexOf" of null' );
|
|
}
|
|
|
|
var length = arr.length; // Hack to convert object.length to a UInt32
|
|
|
|
if (Math.abs(fromIndex) === Infinity) {
|
|
fromIndex = 0;
|
|
}
|
|
|
|
if (fromIndex < 0) {
|
|
fromIndex += length;
|
|
if (fromIndex < 0) {
|
|
fromIndex = 0;
|
|
}
|
|
}
|
|
|
|
for (;fromIndex < length; fromIndex++) {
|
|
if (arr[fromIndex] === item) {
|
|
return fromIndex;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
};
|
|
|
|
dust.nextTick = (function() {
|
|
return function(callback) {
|
|
setTimeout(callback,0);
|
|
};
|
|
} )();
|
|
|
|
dust.isEmpty = function(value) {
|
|
if (dust.isArray(value) && !value.length) {
|
|
return true;
|
|
}
|
|
if (value === 0) {
|
|
return false;
|
|
}
|
|
return (!value);
|
|
};
|
|
|
|
// apply the filter chain and return the output string
|
|
dust.filter = function(string, auto, filters) {
|
|
if (filters) {
|
|
for (var i=0, len=filters.length; i<len; i++) {
|
|
var name = filters[i];
|
|
if (name === 's') {
|
|
auto = null;
|
|
}
|
|
else if (typeof dust.filters[name] === 'function') {
|
|
string = dust.filters[name](string);
|
|
}
|
|
else {
|
|
dust.log('Invalid filter [' + name + ']', WARN);
|
|
}
|
|
}
|
|
}
|
|
// by default always apply the h filter, unless asked to unescape with |s
|
|
if (auto) {
|
|
string = dust.filters[auto](string);
|
|
}
|
|
return string;
|
|
};
|
|
|
|
dust.filters = {
|
|
h: function(value) { return dust.escapeHtml(value); },
|
|
j: function(value) { return dust.escapeJs(value); },
|
|
u: encodeURI,
|
|
uc: encodeURIComponent,
|
|
js: function(value) {
|
|
if (!JSON) {
|
|
dust.log('JSON is undefined. JSON stringify has not been used on [' + value + ']', WARN);
|
|
return value;
|
|
} else {
|
|
return JSON.stringify(value);
|
|
}
|
|
},
|
|
jp: function(value) {
|
|
if (!JSON) {dust.log('JSON is undefined. JSON parse has not been used on [' + value + ']', WARN);
|
|
return value;
|
|
} else {
|
|
return JSON.parse(value);
|
|
}
|
|
}
|
|
};
|
|
|
|
function Context(stack, global, blocks, templateName) {
|
|
this.stack = stack;
|
|
this.global = global;
|
|
this.blocks = blocks;
|
|
this.templateName = templateName;
|
|
}
|
|
|
|
dust.makeBase = function(global) {
|
|
return new Context(new Stack(), global);
|
|
};
|
|
|
|
Context.wrap = function(context, name) {
|
|
if (context instanceof Context) {
|
|
return context;
|
|
}
|
|
return new Context(new Stack(context), {}, null, name);
|
|
};
|
|
|
|
/**
|
|
* Public API for getting a value from the context.
|
|
* @method get
|
|
* @param {string|array} path The path to the value. Supported formats are:
|
|
* 'key'
|
|
* 'path.to.key'
|
|
* '.path.to.key'
|
|
* ['path', 'to', 'key']
|
|
* ['key']
|
|
* @param {boolean} [cur=false] Boolean which determines if the search should be limited to the
|
|
* current context (true), or if get should search in parent contexts as well (false).
|
|
* @public
|
|
* @returns {string|object}
|
|
*/
|
|
Context.prototype.get = function(path, cur) {
|
|
if (typeof path === 'string') {
|
|
if (path[0] === '.') {
|
|
cur = true;
|
|
path = path.substr(1);
|
|
}
|
|
path = path.split('.');
|
|
}
|
|
return this._get(cur, path);
|
|
};
|
|
|
|
/**
|
|
* Get a value from the context
|
|
* @method _get
|
|
* @param {boolean} cur Get only from the current context
|
|
* @param {array} down An array of each step in the path
|
|
* @private
|
|
* @return {string | object}
|
|
*/
|
|
Context.prototype._get = function(cur, down) {
|
|
var ctx = this.stack,
|
|
i = 1,
|
|
value, first, len, ctxThis;
|
|
first = down[0];
|
|
len = down.length;
|
|
|
|
if (cur && len === 0) {
|
|
ctxThis = ctx;
|
|
ctx = ctx.head;
|
|
} else {
|
|
if (!cur) {
|
|
// Search up the stack for the first value
|
|
while (ctx) {
|
|
if (ctx.isObject) {
|
|
ctxThis = ctx.head;
|
|
value = ctx.head[first];
|
|
if (value !== undefined) {
|
|
break;
|
|
}
|
|
}
|
|
ctx = ctx.tail;
|
|
}
|
|
|
|
if (value !== undefined) {
|
|
ctx = value;
|
|
} else {
|
|
ctx = this.global ? this.global[first] : undefined;
|
|
}
|
|
} else if (ctx) {
|
|
// if scope is limited by a leading dot, don't search up the tree
|
|
if(ctx.head) {
|
|
ctx = ctx.head[first];
|
|
} else {
|
|
//context's head is empty, value we are searching for is not defined
|
|
ctx = undefined;
|
|
}
|
|
}
|
|
|
|
while (ctx && i < len) {
|
|
ctxThis = ctx;
|
|
ctx = ctx[down[i]];
|
|
i++;
|
|
}
|
|
}
|
|
|
|
// Return the ctx or a function wrapping the application of the context.
|
|
if (typeof ctx === 'function') {
|
|
return function() {
|
|
try {
|
|
return ctx.apply(ctxThis, arguments);
|
|
} catch (err) {
|
|
dust.log(err, ERROR);
|
|
throw err;
|
|
}
|
|
};
|
|
} else {
|
|
if (ctx === undefined) {
|
|
dust.log('Cannot find the value for reference [{' + down.join('.') + '}] in template [' + this.getTemplateName() + ']');
|
|
}
|
|
return ctx;
|
|
}
|
|
};
|
|
|
|
Context.prototype.getPath = function(cur, down) {
|
|
return this._get(cur, down);
|
|
};
|
|
|
|
Context.prototype.push = function(head, idx, len) {
|
|
return new Context(new Stack(head, this.stack, idx, len), this.global, this.blocks, this.getTemplateName());
|
|
};
|
|
|
|
Context.prototype.rebase = function(head) {
|
|
return new Context(new Stack(head), this.global, this.blocks, this.getTemplateName());
|
|
};
|
|
|
|
Context.prototype.current = function() {
|
|
return this.stack.head;
|
|
};
|
|
|
|
Context.prototype.getBlock = function(key, chk, ctx) {
|
|
if (typeof key === 'function') {
|
|
var tempChk = new Chunk();
|
|
key = key(tempChk, this).data.join('');
|
|
}
|
|
|
|
var blocks = this.blocks;
|
|
|
|
if (!blocks) {
|
|
dust.log('No blocks for context[{' + key + '}] in template [' + this.getTemplateName() + ']', DEBUG);
|
|
return;
|
|
}
|
|
var len = blocks.length, fn;
|
|
while (len--) {
|
|
fn = blocks[len][key];
|
|
if (fn) {
|
|
return fn;
|
|
}
|
|
}
|
|
};
|
|
|
|
Context.prototype.shiftBlocks = function(locals) {
|
|
var blocks = this.blocks,
|
|
newBlocks;
|
|
|
|
if (locals) {
|
|
if (!blocks) {
|
|
newBlocks = [locals];
|
|
} else {
|
|
newBlocks = blocks.concat([locals]);
|
|
}
|
|
return new Context(this.stack, this.global, newBlocks, this.getTemplateName());
|
|
}
|
|
return this;
|
|
};
|
|
|
|
Context.prototype.getTemplateName = function() {
|
|
return this.templateName;
|
|
};
|
|
|
|
function Stack(head, tail, idx, len) {
|
|
this.tail = tail;
|
|
this.isObject = head && typeof head === 'object';
|
|
this.head = head;
|
|
this.index = idx;
|
|
this.of = len;
|
|
}
|
|
|
|
function Stub(callback) {
|
|
this.head = new Chunk(this);
|
|
this.callback = callback;
|
|
this.out = '';
|
|
}
|
|
|
|
Stub.prototype.flush = function() {
|
|
var chunk = this.head;
|
|
|
|
while (chunk) {
|
|
if (chunk.flushable) {
|
|
this.out += chunk.data.join(''); //ie7 perf
|
|
} else if (chunk.error) {
|
|
this.callback(chunk.error);
|
|
dust.log('Chunk error [' + chunk.error + '] thrown. Ceasing to render this template.', WARN);
|
|
this.flush = EMPTY_FUNC;
|
|
return;
|
|
} else {
|
|
return;
|
|
}
|
|
chunk = chunk.next;
|
|
this.head = chunk;
|
|
}
|
|
this.callback(null, this.out);
|
|
};
|
|
|
|
function Stream() {
|
|
this.head = new Chunk(this);
|
|
}
|
|
|
|
Stream.prototype.flush = function() {
|
|
var chunk = this.head;
|
|
|
|
while(chunk) {
|
|
if (chunk.flushable) {
|
|
this.emit('data', chunk.data.join('')); //ie7 perf
|
|
} else if (chunk.error) {
|
|
this.emit('error', chunk.error);
|
|
dust.log('Chunk error [' + chunk.error + '] thrown. Ceasing to render this template.', WARN);
|
|
this.flush = EMPTY_FUNC;
|
|
return;
|
|
} else {
|
|
return;
|
|
}
|
|
chunk = chunk.next;
|
|
this.head = chunk;
|
|
}
|
|
this.emit('end');
|
|
};
|
|
|
|
Stream.prototype.emit = function(type, data) {
|
|
if (!this.events) {
|
|
dust.log('No events to emit', INFO);
|
|
return false;
|
|
}
|
|
var handler = this.events[type];
|
|
if (!handler) {
|
|
dust.log('Event type [' + type + '] does not exist', WARN);
|
|
return false;
|
|
}
|
|
if (typeof handler === 'function') {
|
|
handler(data);
|
|
} else if (dust.isArray(handler)) {
|
|
var listeners = handler.slice(0);
|
|
for (var i = 0, l = listeners.length; i < l; i++) {
|
|
listeners[i](data);
|
|
}
|
|
} else {
|
|
dust.log('Event Handler [' + handler + '] is not of a type that is handled by emit', WARN);
|
|
}
|
|
};
|
|
|
|
Stream.prototype.on = function(type, callback) {
|
|
if (!this.events) {
|
|
this.events = {};
|
|
}
|
|
if (!this.events[type]) {
|
|
dust.log('Event type [' + type + '] does not exist. Using just the specified callback.', WARN);
|
|
if(callback) {
|
|
this.events[type] = callback;
|
|
} else {
|
|
dust.log('Callback for type [' + type + '] does not exist. Listener not registered.', WARN);
|
|
}
|
|
} else if(typeof this.events[type] === 'function') {
|
|
this.events[type] = [this.events[type], callback];
|
|
} else {
|
|
this.events[type].push(callback);
|
|
}
|
|
return this;
|
|
};
|
|
|
|
Stream.prototype.pipe = function(stream) {
|
|
this.on('data', function(data) {
|
|
try {
|
|
stream.write(data, 'utf8');
|
|
} catch (err) {
|
|
dust.log(err, ERROR);
|
|
}
|
|
}).on('end', function() {
|
|
try {
|
|
return stream.end();
|
|
} catch (err) {
|
|
dust.log(err, ERROR);
|
|
}
|
|
}).on('error', function(err) {
|
|
stream.error(err);
|
|
});
|
|
return this;
|
|
};
|
|
|
|
function Chunk(root, next, taps) {
|
|
this.root = root;
|
|
this.next = next;
|
|
this.data = []; //ie7 perf
|
|
this.flushable = false;
|
|
this.taps = taps;
|
|
}
|
|
|
|
Chunk.prototype.write = function(data) {
|
|
var taps = this.taps;
|
|
|
|
if (taps) {
|
|
data = taps.go(data);
|
|
}
|
|
this.data.push(data);
|
|
return this;
|
|
};
|
|
|
|
Chunk.prototype.end = function(data) {
|
|
if (data) {
|
|
this.write(data);
|
|
}
|
|
this.flushable = true;
|
|
this.root.flush();
|
|
return this;
|
|
};
|
|
|
|
Chunk.prototype.map = function(callback) {
|
|
var cursor = new Chunk(this.root, this.next, this.taps),
|
|
branch = new Chunk(this.root, cursor, this.taps);
|
|
|
|
this.next = branch;
|
|
this.flushable = true;
|
|
try {
|
|
callback(branch);
|
|
} catch(e) {
|
|
dust.log(e, ERROR);
|
|
branch.setError(e);
|
|
}
|
|
return cursor;
|
|
};
|
|
|
|
Chunk.prototype.tap = function(tap) {
|
|
var taps = this.taps;
|
|
|
|
if (taps) {
|
|
this.taps = taps.push(tap);
|
|
} else {
|
|
this.taps = new Tap(tap);
|
|
}
|
|
return this;
|
|
};
|
|
|
|
Chunk.prototype.untap = function() {
|
|
this.taps = this.taps.tail;
|
|
return this;
|
|
};
|
|
|
|
Chunk.prototype.render = function(body, context) {
|
|
return body(this, context);
|
|
};
|
|
|
|
Chunk.prototype.reference = function(elem, context, auto, filters) {
|
|
if (typeof elem === 'function') {
|
|
// Changed the function calling to use apply with the current context to make sure
|
|
// that "this" is wat we expect it to be inside the function
|
|
elem = elem.apply(context.current(), [this, context, null, {auto: auto, filters: filters}]);
|
|
if (elem instanceof Chunk) {
|
|
return elem;
|
|
}
|
|
}
|
|
if (!dust.isEmpty(elem)) {
|
|
return this.write(dust.filter(elem, auto, filters));
|
|
} else {
|
|
return this;
|
|
}
|
|
};
|
|
|
|
Chunk.prototype.section = function(elem, context, bodies, params) {
|
|
// anonymous functions
|
|
if (typeof elem === 'function') {
|
|
try {
|
|
elem = elem.apply(context.current(), [this, context, bodies, params]);
|
|
} catch(e) {
|
|
dust.log(e, ERROR);
|
|
return this.setError(e);
|
|
}
|
|
// functions that return chunks are assumed to have handled the body and/or have modified the chunk
|
|
// use that return value as the current chunk and go to the next method in the chain
|
|
if (elem instanceof Chunk) {
|
|
return elem;
|
|
}
|
|
}
|
|
var body = bodies.block,
|
|
skip = bodies['else'];
|
|
|
|
// a.k.a Inline parameters in the Dust documentations
|
|
if (params) {
|
|
context = context.push(params);
|
|
}
|
|
|
|
/*
|
|
Dust's default behavior is to enumerate over the array elem, passing each object in the array to the block.
|
|
When elem resolves to a value or object instead of an array, Dust sets the current context to the value
|
|
and renders the block one time.
|
|
*/
|
|
//non empty array is truthy, empty array is falsy
|
|
if (dust.isArray(elem)) {
|
|
if (body) {
|
|
var len = elem.length, chunk = this;
|
|
if (len > 0) {
|
|
// any custom helper can blow up the stack
|
|
// and store a flattened context, guard defensively
|
|
if(context.stack.head) {
|
|
context.stack.head['$len'] = len;
|
|
}
|
|
for (var i=0; i<len; i++) {
|
|
if(context.stack.head) {
|
|
context.stack.head['$idx'] = i;
|
|
}
|
|
chunk = body(chunk, context.push(elem[i], i, len));
|
|
}
|
|
if(context.stack.head) {
|
|
context.stack.head['$idx'] = undefined;
|
|
context.stack.head['$len'] = undefined;
|
|
}
|
|
return chunk;
|
|
}
|
|
else if (skip) {
|
|
return skip(this, context);
|
|
}
|
|
}
|
|
} else if (elem === true) {
|
|
// true is truthy but does not change context
|
|
if (body) {
|
|
return body(this, context);
|
|
}
|
|
} else if (elem || elem === 0) {
|
|
// everything that evaluates to true are truthy ( e.g. Non-empty strings and Empty objects are truthy. )
|
|
// zero is truthy
|
|
// for anonymous functions that did not returns a chunk, truthiness is evaluated based on the return value
|
|
if (body) {
|
|
return body(this, context.push(elem));
|
|
}
|
|
// nonexistent, scalar false value, scalar empty string, null,
|
|
// undefined are all falsy
|
|
} else if (skip) {
|
|
return skip(this, context);
|
|
}
|
|
dust.log('Not rendering section (#) block in template [' + context.getTemplateName() + '], because above key was not found', DEBUG);
|
|
return this;
|
|
};
|
|
|
|
Chunk.prototype.exists = function(elem, context, bodies) {
|
|
var body = bodies.block,
|
|
skip = bodies['else'];
|
|
|
|
if (!dust.isEmpty(elem)) {
|
|
if (body) {
|
|
return body(this, context);
|
|
}
|
|
} else if (skip) {
|
|
return skip(this, context);
|
|
}
|
|
dust.log('Not rendering exists (?) block in template [' + context.getTemplateName() + '], because above key was not found', DEBUG);
|
|
return this;
|
|
};
|
|
|
|
Chunk.prototype.notexists = function(elem, context, bodies) {
|
|
var body = bodies.block,
|
|
skip = bodies['else'];
|
|
|
|
if (dust.isEmpty(elem)) {
|
|
if (body) {
|
|
return body(this, context);
|
|
}
|
|
} else if (skip) {
|
|
return skip(this, context);
|
|
}
|
|
dust.log('Not rendering not exists (^) block check in template [' + context.getTemplateName() + '], because above key was found', DEBUG);
|
|
return this;
|
|
};
|
|
|
|
Chunk.prototype.block = function(elem, context, bodies) {
|
|
var body = bodies.block;
|
|
|
|
if (elem) {
|
|
body = elem;
|
|
}
|
|
|
|
if (body) {
|
|
return body(this, context);
|
|
}
|
|
return this;
|
|
};
|
|
|
|
Chunk.prototype.partial = function(elem, context, params) {
|
|
var partialContext;
|
|
//put the params context second to match what section does. {.} matches the current context without parameters
|
|
// start with an empty context
|
|
partialContext = dust.makeBase(context.global);
|
|
partialContext.blocks = context.blocks;
|
|
if (context.stack && context.stack.tail){
|
|
// grab the stack(tail) off of the previous context if we have it
|
|
partialContext.stack = context.stack.tail;
|
|
}
|
|
if (params){
|
|
//put params on
|
|
partialContext = partialContext.push(params);
|
|
}
|
|
|
|
if(typeof elem === 'string') {
|
|
partialContext.templateName = elem;
|
|
}
|
|
|
|
//reattach the head
|
|
partialContext = partialContext.push(context.stack.head);
|
|
|
|
var partialChunk;
|
|
if (typeof elem === 'function') {
|
|
partialChunk = this.capture(elem, partialContext, function(name, chunk) {
|
|
partialContext.templateName = partialContext.templateName || name;
|
|
dust.load(name, chunk, partialContext).end();
|
|
});
|
|
} else {
|
|
partialChunk = dust.load(elem, this, partialContext);
|
|
}
|
|
return partialChunk;
|
|
};
|
|
|
|
Chunk.prototype.helper = function(name, context, bodies, params) {
|
|
var chunk = this;
|
|
// handle invalid helpers, similar to invalid filters
|
|
if(dust.helpers[name]) {
|
|
try {
|
|
return dust.helpers[name](chunk, context, bodies, params);
|
|
} catch(e) {
|
|
dust.log('Error in ' + name + ' helper: ' + e, ERROR);
|
|
return chunk.setError(e);
|
|
}
|
|
} else {
|
|
dust.log('Invalid helper [' + name + ']', WARN);
|
|
return chunk;
|
|
}
|
|
};
|
|
|
|
Chunk.prototype.capture = function(body, context, callback) {
|
|
return this.map(function(chunk) {
|
|
var stub = new Stub(function(err, out) {
|
|
if (err) {
|
|
chunk.setError(err);
|
|
} else {
|
|
callback(out, chunk);
|
|
}
|
|
});
|
|
body(stub.head, context).end();
|
|
});
|
|
};
|
|
|
|
Chunk.prototype.setError = function(err) {
|
|
this.error = err;
|
|
this.root.flush();
|
|
return this;
|
|
};
|
|
|
|
function Tap(head, tail) {
|
|
this.head = head;
|
|
this.tail = tail;
|
|
}
|
|
|
|
Tap.prototype.push = function(tap) {
|
|
return new Tap(tap, this);
|
|
};
|
|
|
|
Tap.prototype.go = function(value) {
|
|
var tap = this;
|
|
|
|
while(tap) {
|
|
value = tap.head(value);
|
|
tap = tap.tail;
|
|
}
|
|
return value;
|
|
};
|
|
|
|
var HCHARS = new RegExp(/[&<>\"\']/),
|
|
AMP = /&/g,
|
|
LT = /</g,
|
|
GT = />/g,
|
|
QUOT = /\"/g,
|
|
SQUOT = /\'/g;
|
|
|
|
dust.escapeHtml = function(s) {
|
|
if (typeof s === 'string') {
|
|
if (!HCHARS.test(s)) {
|
|
return s;
|
|
}
|
|
return s.replace(AMP,'&').replace(LT,'<').replace(GT,'>').replace(QUOT,'"').replace(SQUOT, ''');
|
|
}
|
|
return s;
|
|
};
|
|
|
|
var BS = /\\/g,
|
|
FS = /\//g,
|
|
CR = /\r/g,
|
|
LS = /\u2028/g,
|
|
PS = /\u2029/g,
|
|
NL = /\n/g,
|
|
LF = /\f/g,
|
|
SQ = /'/g,
|
|
DQ = /"/g,
|
|
TB = /\t/g;
|
|
|
|
dust.escapeJs = function(s) {
|
|
if (typeof s === 'string') {
|
|
return s
|
|
.replace(BS, '\\\\')
|
|
.replace(FS, '\\/')
|
|
.replace(DQ, '\\"')
|
|
.replace(SQ, '\\\'')
|
|
.replace(CR, '\\r')
|
|
.replace(LS, '\\u2028')
|
|
.replace(PS, '\\u2029')
|
|
.replace(NL, '\\n')
|
|
.replace(LF, '\\f')
|
|
.replace(TB, '\\t');
|
|
}
|
|
return s;
|
|
};
|
|
|
|
|
|
if (typeof exports === 'object') {
|
|
module.exports = dust;
|
|
} else {
|
|
root.dust = dust;
|
|
}
|
|
|
|
})((function(){return this;})());
|
|
|
|
(function(root, factory) {
|
|
if (typeof exports === 'object') {
|
|
// in Node, require this file if we want to use the parser as a standalone module
|
|
module.exports = factory(require('./dust'));
|
|
// @see server file for parser methods exposed in node
|
|
} else {
|
|
// in the browser, store the factory output if we want to use the parser directly
|
|
factory(root.dust);
|
|
}
|
|
}(this, function(dust) {
|
|
var parser = (function() {
|
|
/*
|
|
* Generated by PEG.js 0.8.0.
|
|
*
|
|
* http://pegjs.majda.cz/
|
|
*/
|
|
|
|
function peg$subclass(child, parent) {
|
|
function ctor() { this.constructor = child; }
|
|
ctor.prototype = parent.prototype;
|
|
child.prototype = new ctor();
|
|
}
|
|
|
|
function SyntaxError(message, expected, found, offset, line, column) {
|
|
this.message = message;
|
|
this.expected = expected;
|
|
this.found = found;
|
|
this.offset = offset;
|
|
this.line = line;
|
|
this.column = column;
|
|
|
|
this.name = "SyntaxError";
|
|
}
|
|
|
|
peg$subclass(SyntaxError, Error);
|
|
|
|
function parse(input) {
|
|
var options = arguments.length > 1 ? arguments[1] : {},
|
|
|
|
peg$FAILED = {},
|
|
|
|
peg$startRuleFunctions = { start: peg$parsestart },
|
|
peg$startRuleFunction = peg$parsestart,
|
|
|
|
peg$c0 = [],
|
|
peg$c1 = function(p) {
|
|
return ["body"]
|
|
.concat(p)
|
|
.concat([['line', line()], ['col', column()]]);
|
|
},
|
|
peg$c2 = { type: "other", description: "section" },
|
|
peg$c3 = peg$FAILED,
|
|
peg$c4 = null,
|
|
peg$c5 = function(t, b, e, n) {
|
|
if( (!n) || (t[1].text !== n.text) ) {
|
|
error("Expected end tag for "+t[1].text+" but it was not found.");
|
|
}
|
|
return true;
|
|
},
|
|
peg$c6 = void 0,
|
|
peg$c7 = function(t, b, e, n) {
|
|
e.push(["param", ["literal", "block"], b]);
|
|
t.push(e);
|
|
return t.concat([['line', line()], ['col', column()]]);
|
|
},
|
|
peg$c8 = "/",
|
|
peg$c9 = { type: "literal", value: "/", description: "\"/\"" },
|
|
peg$c10 = function(t) {
|
|
t.push(["bodies"]);
|
|
return t.concat([['line', line()], ['col', column()]]);
|
|
},
|
|
peg$c11 = /^[#?\^<+@%]/,
|
|
peg$c12 = { type: "class", value: "[#?\\^<+@%]", description: "[#?\\^<+@%]" },
|
|
peg$c13 = function(t, n, c, p) { return [t, n, c, p] },
|
|
peg$c14 = { type: "other", description: "end tag" },
|
|
peg$c15 = function(n) { return n },
|
|
peg$c16 = ":",
|
|
peg$c17 = { type: "literal", value: ":", description: "\":\"" },
|
|
peg$c18 = function(n) {return n},
|
|
peg$c19 = function(n) { return n ? ["context", n] : ["context"] },
|
|
peg$c20 = { type: "other", description: "params" },
|
|
peg$c21 = "=",
|
|
peg$c22 = { type: "literal", value: "=", description: "\"=\"" },
|
|
peg$c23 = function(k, v) {return ["param", ["literal", k], v]},
|
|
peg$c24 = function(p) { return ["params"].concat(p) },
|
|
peg$c25 = { type: "other", description: "bodies" },
|
|
peg$c26 = function(p) { return ["bodies"].concat(p) },
|
|
peg$c27 = { type: "other", description: "reference" },
|
|
peg$c28 = function(n, f) { return ["reference", n, f].concat([['line', line()], ['col', column()]]) },
|
|
peg$c29 = { type: "other", description: "partial" },
|
|
peg$c30 = ">",
|
|
peg$c31 = { type: "literal", value: ">", description: "\">\"" },
|
|
peg$c32 = "+",
|
|
peg$c33 = { type: "literal", value: "+", description: "\"+\"" },
|
|
peg$c34 = function(k) {return ["literal", k]},
|
|
peg$c35 = function(s, n, c, p) {
|
|
var key = (s === ">") ? "partial" : s;
|
|
return [key, n, c, p].concat([['line', line()], ['col', column()]]);
|
|
},
|
|
peg$c36 = { type: "other", description: "filters" },
|
|
peg$c37 = "|",
|
|
peg$c38 = { type: "literal", value: "|", description: "\"|\"" },
|
|
peg$c39 = function(f) { return ["filters"].concat(f) },
|
|
peg$c40 = { type: "other", description: "special" },
|
|
peg$c41 = "~",
|
|
peg$c42 = { type: "literal", value: "~", description: "\"~\"" },
|
|
peg$c43 = function(k) { return ["special", k].concat([['line', line()], ['col', column()]]) },
|
|
peg$c44 = { type: "other", description: "identifier" },
|
|
peg$c45 = function(p) { var arr = ["path"].concat(p); arr.text = p[1].join('.'); return arr; },
|
|
peg$c46 = function(k) { var arr = ["key", k]; arr.text = k; return arr; },
|
|
peg$c47 = { type: "other", description: "number" },
|
|
peg$c48 = function(n) { return ['literal', n]; },
|
|
peg$c49 = { type: "other", description: "float" },
|
|
peg$c50 = ".",
|
|
peg$c51 = { type: "literal", value: ".", description: "\".\"" },
|
|
peg$c52 = function(l, r) { return parseFloat(l + "." + r.join('')); },
|
|
peg$c53 = { type: "other", description: "integer" },
|
|
peg$c54 = /^[0-9]/,
|
|
peg$c55 = { type: "class", value: "[0-9]", description: "[0-9]" },
|
|
peg$c56 = function(digits) { return parseInt(digits.join(""), 10); },
|
|
peg$c57 = { type: "other", description: "path" },
|
|
peg$c58 = function(k, d) {
|
|
d = d[0];
|
|
if (k && d) {
|
|
d.unshift(k);
|
|
return [false, d].concat([['line', line()], ['col', column()]]);
|
|
}
|
|
return [true, d].concat([['line', line()], ['col', column()]]);
|
|
},
|
|
peg$c59 = function(d) {
|
|
if (d.length > 0) {
|
|
return [true, d[0]].concat([['line', line()], ['col', column()]]);
|
|
}
|
|
return [true, []].concat([['line', line()], ['col', column()]]);
|
|
},
|
|
peg$c60 = { type: "other", description: "key" },
|
|
peg$c61 = /^[a-zA-Z_$]/,
|
|
peg$c62 = { type: "class", value: "[a-zA-Z_$]", description: "[a-zA-Z_$]" },
|
|
peg$c63 = /^[0-9a-zA-Z_$\-]/,
|
|
peg$c64 = { type: "class", value: "[0-9a-zA-Z_$\\-]", description: "[0-9a-zA-Z_$\\-]" },
|
|
peg$c65 = function(h, t) { return h + t.join('') },
|
|
peg$c66 = { type: "other", description: "array" },
|
|
peg$c67 = function(n) {return n.join('')},
|
|
peg$c68 = function(a) {return a; },
|
|
peg$c69 = function(i, nk) { if(nk) { nk.unshift(i); } else {nk = [i] } return nk; },
|
|
peg$c70 = { type: "other", description: "array_part" },
|
|
peg$c71 = function(k) {return k},
|
|
peg$c72 = function(d, a) { if (a) { return d.concat(a); } else { return d; } },
|
|
peg$c73 = { type: "other", description: "inline" },
|
|
peg$c74 = "\"",
|
|
peg$c75 = { type: "literal", value: "\"", description: "\"\\\"\"" },
|
|
peg$c76 = function() { return ["literal", ""].concat([['line', line()], ['col', column()]]) },
|
|
peg$c77 = function(l) { return ["literal", l].concat([['line', line()], ['col', column()]]) },
|
|
peg$c78 = function(p) { return ["body"].concat(p).concat([['line', line()], ['col', column()]]) },
|
|
peg$c79 = function(l) { return ["buffer", l] },
|
|
peg$c80 = { type: "other", description: "buffer" },
|
|
peg$c81 = function(e, w) { return ["format", e, w.join('')].concat([['line', line()], ['col', column()]]) },
|
|
peg$c82 = { type: "any", description: "any character" },
|
|
peg$c83 = function(c) {return c},
|
|
peg$c84 = function(b) { return ["buffer", b.join('')].concat([['line', line()], ['col', column()]]) },
|
|
peg$c85 = { type: "other", description: "literal" },
|
|
peg$c86 = /^[^"]/,
|
|
peg$c87 = { type: "class", value: "[^\"]", description: "[^\"]" },
|
|
peg$c88 = function(b) { return b.join('') },
|
|
peg$c89 = "\\\"",
|
|
peg$c90 = { type: "literal", value: "\\\"", description: "\"\\\\\\\"\"" },
|
|
peg$c91 = function() { return '"' },
|
|
peg$c92 = { type: "other", description: "raw" },
|
|
peg$c93 = "{`",
|
|
peg$c94 = { type: "literal", value: "{`", description: "\"{`\"" },
|
|
peg$c95 = "`}",
|
|
peg$c96 = { type: "literal", value: "`}", description: "\"`}\"" },
|
|
peg$c97 = function(char) {return char},
|
|
peg$c98 = function(rawText) { return ["raw", rawText.join('')].concat([['line', line()], ['col', column()]]) },
|
|
peg$c99 = { type: "other", description: "comment" },
|
|
peg$c100 = "{!",
|
|
peg$c101 = { type: "literal", value: "{!", description: "\"{!\"" },
|
|
peg$c102 = "!}",
|
|
peg$c103 = { type: "literal", value: "!}", description: "\"!}\"" },
|
|
peg$c104 = function(c) { return ["comment", c.join('')].concat([['line', line()], ['col', column()]]) },
|
|
peg$c105 = /^[#?\^><+%:@\/~%]/,
|
|
peg$c106 = { type: "class", value: "[#?\\^><+%:@\\/~%]", description: "[#?\\^><+%:@\\/~%]" },
|
|
peg$c107 = "{",
|
|
peg$c108 = { type: "literal", value: "{", description: "\"{\"" },
|
|
peg$c109 = "}",
|
|
peg$c110 = { type: "literal", value: "}", description: "\"}\"" },
|
|
peg$c111 = "[",
|
|
peg$c112 = { type: "literal", value: "[", description: "\"[\"" },
|
|
peg$c113 = "]",
|
|
peg$c114 = { type: "literal", value: "]", description: "\"]\"" },
|
|
peg$c115 = "\n",
|
|
peg$c116 = { type: "literal", value: "\n", description: "\"\\n\"" },
|
|
peg$c117 = "\r\n",
|
|
peg$c118 = { type: "literal", value: "\r\n", description: "\"\\r\\n\"" },
|
|
peg$c119 = "\r",
|
|
peg$c120 = { type: "literal", value: "\r", description: "\"\\r\"" },
|
|
peg$c121 = "\u2028",
|
|
peg$c122 = { type: "literal", value: "\u2028", description: "\"\\u2028\"" },
|
|
peg$c123 = "\u2029",
|
|
peg$c124 = { type: "literal", value: "\u2029", description: "\"\\u2029\"" },
|
|
peg$c125 = /^[\t\x0B\f \xA0\uFEFF]/,
|
|
peg$c126 = { type: "class", value: "[\\t\\x0B\\f \\xA0\\uFEFF]", description: "[\\t\\x0B\\f \\xA0\\uFEFF]" },
|
|
|
|
peg$currPos = 0,
|
|
peg$reportedPos = 0,
|
|
peg$cachedPos = 0,
|
|
peg$cachedPosDetails = { line: 1, column: 1, seenCR: false },
|
|
peg$maxFailPos = 0,
|
|
peg$maxFailExpected = [],
|
|
peg$silentFails = 0,
|
|
|
|
peg$result;
|
|
|
|
if ("startRule" in options) {
|
|
if (!(options.startRule in peg$startRuleFunctions)) {
|
|
throw new Error("Can't start parsing from rule \"" + options.startRule + "\".");
|
|
}
|
|
|
|
peg$startRuleFunction = peg$startRuleFunctions[options.startRule];
|
|
}
|
|
|
|
function text() {
|
|
return input.substring(peg$reportedPos, peg$currPos);
|
|
}
|
|
|
|
function offset() {
|
|
return peg$reportedPos;
|
|
}
|
|
|
|
function line() {
|
|
return peg$computePosDetails(peg$reportedPos).line;
|
|
}
|
|
|
|
function column() {
|
|
return peg$computePosDetails(peg$reportedPos).column;
|
|
}
|
|
|
|
function expected(description) {
|
|
throw peg$buildException(
|
|
null,
|
|
[{ type: "other", description: description }],
|
|
peg$reportedPos
|
|
);
|
|
}
|
|
|
|
function error(message) {
|
|
throw peg$buildException(message, null, peg$reportedPos);
|
|
}
|
|
|
|
function peg$computePosDetails(pos) {
|
|
function advance(details, startPos, endPos) {
|
|
var p, ch;
|
|
|
|
for (p = startPos; p < endPos; p++) {
|
|
ch = input.charAt(p);
|
|
if (ch === "\n") {
|
|
if (!details.seenCR) { details.line++; }
|
|
details.column = 1;
|
|
details.seenCR = false;
|
|
} else if (ch === "\r" || ch === "\u2028" || ch === "\u2029") {
|
|
details.line++;
|
|
details.column = 1;
|
|
details.seenCR = true;
|
|
} else {
|
|
details.column++;
|
|
details.seenCR = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (peg$cachedPos !== pos) {
|
|
if (peg$cachedPos > pos) {
|
|
peg$cachedPos = 0;
|
|
peg$cachedPosDetails = { line: 1, column: 1, seenCR: false };
|
|
}
|
|
advance(peg$cachedPosDetails, peg$cachedPos, pos);
|
|
peg$cachedPos = pos;
|
|
}
|
|
|
|
return peg$cachedPosDetails;
|
|
}
|
|
|
|
function peg$fail(expected) {
|
|
if (peg$currPos < peg$maxFailPos) { return; }
|
|
|
|
if (peg$currPos > peg$maxFailPos) {
|
|
peg$maxFailPos = peg$currPos;
|
|
peg$maxFailExpected = [];
|
|
}
|
|
|
|
peg$maxFailExpected.push(expected);
|
|
}
|
|
|
|
function peg$buildException(message, expected, pos) {
|
|
function cleanupExpected(expected) {
|
|
var i = 1;
|
|
|
|
expected.sort(function(a, b) {
|
|
if (a.description < b.description) {
|
|
return -1;
|
|
} else if (a.description > b.description) {
|
|
return 1;
|
|
} else {
|
|
return 0;
|
|
}
|
|
});
|
|
|
|
while (i < expected.length) {
|
|
if (expected[i - 1] === expected[i]) {
|
|
expected.splice(i, 1);
|
|
} else {
|
|
i++;
|
|
}
|
|
}
|
|
}
|
|
|
|
function buildMessage(expected, found) {
|
|
function stringEscape(s) {
|
|
function hex(ch) { return ch.charCodeAt(0).toString(16).toUpperCase(); }
|
|
|
|
return s
|
|
.replace(/\\/g, '\\\\')
|
|
.replace(/"/g, '\\"')
|
|
.replace(/\x08/g, '\\b')
|
|
.replace(/\t/g, '\\t')
|
|
.replace(/\n/g, '\\n')
|
|
.replace(/\f/g, '\\f')
|
|
.replace(/\r/g, '\\r')
|
|
.replace(/[\x00-\x07\x0B\x0E\x0F]/g, function(ch) { return '\\x0' + hex(ch); })
|
|
.replace(/[\x10-\x1F\x80-\xFF]/g, function(ch) { return '\\x' + hex(ch); })
|
|
.replace(/[\u0180-\u0FFF]/g, function(ch) { return '\\u0' + hex(ch); })
|
|
.replace(/[\u1080-\uFFFF]/g, function(ch) { return '\\u' + hex(ch); });
|
|
}
|
|
|
|
var expectedDescs = new Array(expected.length),
|
|
expectedDesc, foundDesc, i;
|
|
|
|
for (i = 0; i < expected.length; i++) {
|
|
expectedDescs[i] = expected[i].description;
|
|
}
|
|
|
|
expectedDesc = expected.length > 1
|
|
? expectedDescs.slice(0, -1).join(", ")
|
|
+ " or "
|
|
+ expectedDescs[expected.length - 1]
|
|
: expectedDescs[0];
|
|
|
|
foundDesc = found ? "\"" + stringEscape(found) + "\"" : "end of input";
|
|
|
|
return "Expected " + expectedDesc + " but " + foundDesc + " found.";
|
|
}
|
|
|
|
var posDetails = peg$computePosDetails(pos),
|
|
found = pos < input.length ? input.charAt(pos) : null;
|
|
|
|
if (expected !== null) {
|
|
cleanupExpected(expected);
|
|
}
|
|
|
|
return new SyntaxError(
|
|
message !== null ? message : buildMessage(expected, found),
|
|
expected,
|
|
found,
|
|
pos,
|
|
posDetails.line,
|
|
posDetails.column
|
|
);
|
|
}
|
|
|
|
function peg$parsestart() {
|
|
var s0;
|
|
|
|
s0 = peg$parsebody();
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsebody() {
|
|
var s0, s1, s2;
|
|
|
|
s0 = peg$currPos;
|
|
s1 = [];
|
|
s2 = peg$parsepart();
|
|
while (s2 !== peg$FAILED) {
|
|
s1.push(s2);
|
|
s2 = peg$parsepart();
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c1(s1);
|
|
}
|
|
s0 = s1;
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsepart() {
|
|
var s0;
|
|
|
|
s0 = peg$parseraw();
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$parsecomment();
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$parsesection();
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$parsepartial();
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$parsespecial();
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$parsereference();
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$parsebuffer();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsesection() {
|
|
var s0, s1, s2, s3, s4, s5, s6, s7;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = peg$parsesec_tag_start();
|
|
if (s1 !== peg$FAILED) {
|
|
s2 = [];
|
|
s3 = peg$parsews();
|
|
while (s3 !== peg$FAILED) {
|
|
s2.push(s3);
|
|
s3 = peg$parsews();
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
s3 = peg$parserd();
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$parsebody();
|
|
if (s4 !== peg$FAILED) {
|
|
s5 = peg$parsebodies();
|
|
if (s5 !== peg$FAILED) {
|
|
s6 = peg$parseend_tag();
|
|
if (s6 === peg$FAILED) {
|
|
s6 = peg$c4;
|
|
}
|
|
if (s6 !== peg$FAILED) {
|
|
peg$reportedPos = peg$currPos;
|
|
s7 = peg$c5(s1, s4, s5, s6);
|
|
if (s7) {
|
|
s7 = peg$c6;
|
|
} else {
|
|
s7 = peg$c3;
|
|
}
|
|
if (s7 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c7(s1, s4, s5, s6);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$currPos;
|
|
s1 = peg$parsesec_tag_start();
|
|
if (s1 !== peg$FAILED) {
|
|
s2 = [];
|
|
s3 = peg$parsews();
|
|
while (s3 !== peg$FAILED) {
|
|
s2.push(s3);
|
|
s3 = peg$parsews();
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 47) {
|
|
s3 = peg$c8;
|
|
peg$currPos++;
|
|
} else {
|
|
s3 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c9); }
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$parserd();
|
|
if (s4 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c10(s1);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
}
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c2); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsesec_tag_start() {
|
|
var s0, s1, s2, s3, s4, s5, s6;
|
|
|
|
s0 = peg$currPos;
|
|
s1 = peg$parseld();
|
|
if (s1 !== peg$FAILED) {
|
|
if (peg$c11.test(input.charAt(peg$currPos))) {
|
|
s2 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s2 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c12); }
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
s3 = [];
|
|
s4 = peg$parsews();
|
|
while (s4 !== peg$FAILED) {
|
|
s3.push(s4);
|
|
s4 = peg$parsews();
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$parseidentifier();
|
|
if (s4 !== peg$FAILED) {
|
|
s5 = peg$parsecontext();
|
|
if (s5 !== peg$FAILED) {
|
|
s6 = peg$parseparams();
|
|
if (s6 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c13(s2, s4, s5, s6);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parseend_tag() {
|
|
var s0, s1, s2, s3, s4, s5, s6;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = peg$parseld();
|
|
if (s1 !== peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 47) {
|
|
s2 = peg$c8;
|
|
peg$currPos++;
|
|
} else {
|
|
s2 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c9); }
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
s3 = [];
|
|
s4 = peg$parsews();
|
|
while (s4 !== peg$FAILED) {
|
|
s3.push(s4);
|
|
s4 = peg$parsews();
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$parseidentifier();
|
|
if (s4 !== peg$FAILED) {
|
|
s5 = [];
|
|
s6 = peg$parsews();
|
|
while (s6 !== peg$FAILED) {
|
|
s5.push(s6);
|
|
s6 = peg$parsews();
|
|
}
|
|
if (s5 !== peg$FAILED) {
|
|
s6 = peg$parserd();
|
|
if (s6 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c15(s4);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c14); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsecontext() {
|
|
var s0, s1, s2, s3;
|
|
|
|
s0 = peg$currPos;
|
|
s1 = peg$currPos;
|
|
if (input.charCodeAt(peg$currPos) === 58) {
|
|
s2 = peg$c16;
|
|
peg$currPos++;
|
|
} else {
|
|
s2 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c17); }
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
s3 = peg$parseidentifier();
|
|
if (s3 !== peg$FAILED) {
|
|
peg$reportedPos = s1;
|
|
s2 = peg$c18(s3);
|
|
s1 = s2;
|
|
} else {
|
|
peg$currPos = s1;
|
|
s1 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s1;
|
|
s1 = peg$c3;
|
|
}
|
|
if (s1 === peg$FAILED) {
|
|
s1 = peg$c4;
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c19(s1);
|
|
}
|
|
s0 = s1;
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parseparams() {
|
|
var s0, s1, s2, s3, s4, s5, s6;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = [];
|
|
s2 = peg$currPos;
|
|
s3 = [];
|
|
s4 = peg$parsews();
|
|
if (s4 !== peg$FAILED) {
|
|
while (s4 !== peg$FAILED) {
|
|
s3.push(s4);
|
|
s4 = peg$parsews();
|
|
}
|
|
} else {
|
|
s3 = peg$c3;
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$parsekey();
|
|
if (s4 !== peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 61) {
|
|
s5 = peg$c21;
|
|
peg$currPos++;
|
|
} else {
|
|
s5 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c22); }
|
|
}
|
|
if (s5 !== peg$FAILED) {
|
|
s6 = peg$parsenumber();
|
|
if (s6 === peg$FAILED) {
|
|
s6 = peg$parseidentifier();
|
|
if (s6 === peg$FAILED) {
|
|
s6 = peg$parseinline();
|
|
}
|
|
}
|
|
if (s6 !== peg$FAILED) {
|
|
peg$reportedPos = s2;
|
|
s3 = peg$c23(s4, s6);
|
|
s2 = s3;
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
while (s2 !== peg$FAILED) {
|
|
s1.push(s2);
|
|
s2 = peg$currPos;
|
|
s3 = [];
|
|
s4 = peg$parsews();
|
|
if (s4 !== peg$FAILED) {
|
|
while (s4 !== peg$FAILED) {
|
|
s3.push(s4);
|
|
s4 = peg$parsews();
|
|
}
|
|
} else {
|
|
s3 = peg$c3;
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$parsekey();
|
|
if (s4 !== peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 61) {
|
|
s5 = peg$c21;
|
|
peg$currPos++;
|
|
} else {
|
|
s5 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c22); }
|
|
}
|
|
if (s5 !== peg$FAILED) {
|
|
s6 = peg$parsenumber();
|
|
if (s6 === peg$FAILED) {
|
|
s6 = peg$parseidentifier();
|
|
if (s6 === peg$FAILED) {
|
|
s6 = peg$parseinline();
|
|
}
|
|
}
|
|
if (s6 !== peg$FAILED) {
|
|
peg$reportedPos = s2;
|
|
s3 = peg$c23(s4, s6);
|
|
s2 = s3;
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c24(s1);
|
|
}
|
|
s0 = s1;
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c20); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsebodies() {
|
|
var s0, s1, s2, s3, s4, s5, s6, s7;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = [];
|
|
s2 = peg$currPos;
|
|
s3 = peg$parseld();
|
|
if (s3 !== peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 58) {
|
|
s4 = peg$c16;
|
|
peg$currPos++;
|
|
} else {
|
|
s4 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c17); }
|
|
}
|
|
if (s4 !== peg$FAILED) {
|
|
s5 = peg$parsekey();
|
|
if (s5 !== peg$FAILED) {
|
|
s6 = peg$parserd();
|
|
if (s6 !== peg$FAILED) {
|
|
s7 = peg$parsebody();
|
|
if (s7 !== peg$FAILED) {
|
|
peg$reportedPos = s2;
|
|
s3 = peg$c23(s5, s7);
|
|
s2 = s3;
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
while (s2 !== peg$FAILED) {
|
|
s1.push(s2);
|
|
s2 = peg$currPos;
|
|
s3 = peg$parseld();
|
|
if (s3 !== peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 58) {
|
|
s4 = peg$c16;
|
|
peg$currPos++;
|
|
} else {
|
|
s4 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c17); }
|
|
}
|
|
if (s4 !== peg$FAILED) {
|
|
s5 = peg$parsekey();
|
|
if (s5 !== peg$FAILED) {
|
|
s6 = peg$parserd();
|
|
if (s6 !== peg$FAILED) {
|
|
s7 = peg$parsebody();
|
|
if (s7 !== peg$FAILED) {
|
|
peg$reportedPos = s2;
|
|
s3 = peg$c23(s5, s7);
|
|
s2 = s3;
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c26(s1);
|
|
}
|
|
s0 = s1;
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c25); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsereference() {
|
|
var s0, s1, s2, s3, s4;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = peg$parseld();
|
|
if (s1 !== peg$FAILED) {
|
|
s2 = peg$parseidentifier();
|
|
if (s2 !== peg$FAILED) {
|
|
s3 = peg$parsefilters();
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$parserd();
|
|
if (s4 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c28(s2, s3);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c27); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsepartial() {
|
|
var s0, s1, s2, s3, s4, s5, s6, s7, s8, s9;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = peg$parseld();
|
|
if (s1 !== peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 62) {
|
|
s2 = peg$c30;
|
|
peg$currPos++;
|
|
} else {
|
|
s2 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c31); }
|
|
}
|
|
if (s2 === peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 43) {
|
|
s2 = peg$c32;
|
|
peg$currPos++;
|
|
} else {
|
|
s2 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c33); }
|
|
}
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
s3 = [];
|
|
s4 = peg$parsews();
|
|
while (s4 !== peg$FAILED) {
|
|
s3.push(s4);
|
|
s4 = peg$parsews();
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$currPos;
|
|
s5 = peg$parsekey();
|
|
if (s5 !== peg$FAILED) {
|
|
peg$reportedPos = s4;
|
|
s5 = peg$c34(s5);
|
|
}
|
|
s4 = s5;
|
|
if (s4 === peg$FAILED) {
|
|
s4 = peg$parseinline();
|
|
}
|
|
if (s4 !== peg$FAILED) {
|
|
s5 = peg$parsecontext();
|
|
if (s5 !== peg$FAILED) {
|
|
s6 = peg$parseparams();
|
|
if (s6 !== peg$FAILED) {
|
|
s7 = [];
|
|
s8 = peg$parsews();
|
|
while (s8 !== peg$FAILED) {
|
|
s7.push(s8);
|
|
s8 = peg$parsews();
|
|
}
|
|
if (s7 !== peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 47) {
|
|
s8 = peg$c8;
|
|
peg$currPos++;
|
|
} else {
|
|
s8 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c9); }
|
|
}
|
|
if (s8 !== peg$FAILED) {
|
|
s9 = peg$parserd();
|
|
if (s9 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c35(s2, s4, s5, s6);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c29); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsefilters() {
|
|
var s0, s1, s2, s3, s4;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = [];
|
|
s2 = peg$currPos;
|
|
if (input.charCodeAt(peg$currPos) === 124) {
|
|
s3 = peg$c37;
|
|
peg$currPos++;
|
|
} else {
|
|
s3 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c38); }
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$parsekey();
|
|
if (s4 !== peg$FAILED) {
|
|
peg$reportedPos = s2;
|
|
s3 = peg$c18(s4);
|
|
s2 = s3;
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
while (s2 !== peg$FAILED) {
|
|
s1.push(s2);
|
|
s2 = peg$currPos;
|
|
if (input.charCodeAt(peg$currPos) === 124) {
|
|
s3 = peg$c37;
|
|
peg$currPos++;
|
|
} else {
|
|
s3 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c38); }
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$parsekey();
|
|
if (s4 !== peg$FAILED) {
|
|
peg$reportedPos = s2;
|
|
s3 = peg$c18(s4);
|
|
s2 = s3;
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c39(s1);
|
|
}
|
|
s0 = s1;
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c36); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsespecial() {
|
|
var s0, s1, s2, s3, s4;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = peg$parseld();
|
|
if (s1 !== peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 126) {
|
|
s2 = peg$c41;
|
|
peg$currPos++;
|
|
} else {
|
|
s2 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c42); }
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
s3 = peg$parsekey();
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$parserd();
|
|
if (s4 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c43(s3);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c40); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parseidentifier() {
|
|
var s0, s1;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = peg$parsepath();
|
|
if (s1 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c45(s1);
|
|
}
|
|
s0 = s1;
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$currPos;
|
|
s1 = peg$parsekey();
|
|
if (s1 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c46(s1);
|
|
}
|
|
s0 = s1;
|
|
}
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c44); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsenumber() {
|
|
var s0, s1;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = peg$parsefloat();
|
|
if (s1 === peg$FAILED) {
|
|
s1 = peg$parseinteger();
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c48(s1);
|
|
}
|
|
s0 = s1;
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c47); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsefloat() {
|
|
var s0, s1, s2, s3, s4;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = peg$parseinteger();
|
|
if (s1 !== peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 46) {
|
|
s2 = peg$c50;
|
|
peg$currPos++;
|
|
} else {
|
|
s2 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c51); }
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
s3 = [];
|
|
s4 = peg$parseinteger();
|
|
if (s4 !== peg$FAILED) {
|
|
while (s4 !== peg$FAILED) {
|
|
s3.push(s4);
|
|
s4 = peg$parseinteger();
|
|
}
|
|
} else {
|
|
s3 = peg$c3;
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c52(s1, s3);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c49); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parseinteger() {
|
|
var s0, s1, s2;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = [];
|
|
if (peg$c54.test(input.charAt(peg$currPos))) {
|
|
s2 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s2 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c55); }
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
while (s2 !== peg$FAILED) {
|
|
s1.push(s2);
|
|
if (peg$c54.test(input.charAt(peg$currPos))) {
|
|
s2 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s2 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c55); }
|
|
}
|
|
}
|
|
} else {
|
|
s1 = peg$c3;
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c56(s1);
|
|
}
|
|
s0 = s1;
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c53); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsepath() {
|
|
var s0, s1, s2, s3;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = peg$parsekey();
|
|
if (s1 === peg$FAILED) {
|
|
s1 = peg$c4;
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
s2 = [];
|
|
s3 = peg$parsearray_part();
|
|
if (s3 === peg$FAILED) {
|
|
s3 = peg$parsearray();
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
while (s3 !== peg$FAILED) {
|
|
s2.push(s3);
|
|
s3 = peg$parsearray_part();
|
|
if (s3 === peg$FAILED) {
|
|
s3 = peg$parsearray();
|
|
}
|
|
}
|
|
} else {
|
|
s2 = peg$c3;
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c58(s1, s2);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$currPos;
|
|
if (input.charCodeAt(peg$currPos) === 46) {
|
|
s1 = peg$c50;
|
|
peg$currPos++;
|
|
} else {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c51); }
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
s2 = [];
|
|
s3 = peg$parsearray_part();
|
|
if (s3 === peg$FAILED) {
|
|
s3 = peg$parsearray();
|
|
}
|
|
while (s3 !== peg$FAILED) {
|
|
s2.push(s3);
|
|
s3 = peg$parsearray_part();
|
|
if (s3 === peg$FAILED) {
|
|
s3 = peg$parsearray();
|
|
}
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c59(s2);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
}
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c57); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsekey() {
|
|
var s0, s1, s2, s3;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
if (peg$c61.test(input.charAt(peg$currPos))) {
|
|
s1 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c62); }
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
s2 = [];
|
|
if (peg$c63.test(input.charAt(peg$currPos))) {
|
|
s3 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s3 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c64); }
|
|
}
|
|
while (s3 !== peg$FAILED) {
|
|
s2.push(s3);
|
|
if (peg$c63.test(input.charAt(peg$currPos))) {
|
|
s3 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s3 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c64); }
|
|
}
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c65(s1, s2);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c60); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsearray() {
|
|
var s0, s1, s2, s3, s4, s5;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = peg$currPos;
|
|
s2 = peg$parselb();
|
|
if (s2 !== peg$FAILED) {
|
|
s3 = peg$currPos;
|
|
s4 = [];
|
|
if (peg$c54.test(input.charAt(peg$currPos))) {
|
|
s5 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s5 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c55); }
|
|
}
|
|
if (s5 !== peg$FAILED) {
|
|
while (s5 !== peg$FAILED) {
|
|
s4.push(s5);
|
|
if (peg$c54.test(input.charAt(peg$currPos))) {
|
|
s5 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s5 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c55); }
|
|
}
|
|
}
|
|
} else {
|
|
s4 = peg$c3;
|
|
}
|
|
if (s4 !== peg$FAILED) {
|
|
peg$reportedPos = s3;
|
|
s4 = peg$c67(s4);
|
|
}
|
|
s3 = s4;
|
|
if (s3 === peg$FAILED) {
|
|
s3 = peg$parseidentifier();
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$parserb();
|
|
if (s4 !== peg$FAILED) {
|
|
peg$reportedPos = s1;
|
|
s2 = peg$c68(s3);
|
|
s1 = s2;
|
|
} else {
|
|
peg$currPos = s1;
|
|
s1 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s1;
|
|
s1 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s1;
|
|
s1 = peg$c3;
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
s2 = peg$parsearray_part();
|
|
if (s2 === peg$FAILED) {
|
|
s2 = peg$c4;
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c69(s1, s2);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c66); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsearray_part() {
|
|
var s0, s1, s2, s3, s4;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = [];
|
|
s2 = peg$currPos;
|
|
if (input.charCodeAt(peg$currPos) === 46) {
|
|
s3 = peg$c50;
|
|
peg$currPos++;
|
|
} else {
|
|
s3 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c51); }
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$parsekey();
|
|
if (s4 !== peg$FAILED) {
|
|
peg$reportedPos = s2;
|
|
s3 = peg$c71(s4);
|
|
s2 = s3;
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
while (s2 !== peg$FAILED) {
|
|
s1.push(s2);
|
|
s2 = peg$currPos;
|
|
if (input.charCodeAt(peg$currPos) === 46) {
|
|
s3 = peg$c50;
|
|
peg$currPos++;
|
|
} else {
|
|
s3 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c51); }
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$parsekey();
|
|
if (s4 !== peg$FAILED) {
|
|
peg$reportedPos = s2;
|
|
s3 = peg$c71(s4);
|
|
s2 = s3;
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
}
|
|
} else {
|
|
s1 = peg$c3;
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
s2 = peg$parsearray();
|
|
if (s2 === peg$FAILED) {
|
|
s2 = peg$c4;
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c72(s1, s2);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c70); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parseinline() {
|
|
var s0, s1, s2, s3;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
if (input.charCodeAt(peg$currPos) === 34) {
|
|
s1 = peg$c74;
|
|
peg$currPos++;
|
|
} else {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c75); }
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 34) {
|
|
s2 = peg$c74;
|
|
peg$currPos++;
|
|
} else {
|
|
s2 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c75); }
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c76();
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$currPos;
|
|
if (input.charCodeAt(peg$currPos) === 34) {
|
|
s1 = peg$c74;
|
|
peg$currPos++;
|
|
} else {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c75); }
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
s2 = peg$parseliteral();
|
|
if (s2 !== peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 34) {
|
|
s3 = peg$c74;
|
|
peg$currPos++;
|
|
} else {
|
|
s3 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c75); }
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c77(s2);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$currPos;
|
|
if (input.charCodeAt(peg$currPos) === 34) {
|
|
s1 = peg$c74;
|
|
peg$currPos++;
|
|
} else {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c75); }
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
s2 = [];
|
|
s3 = peg$parseinline_part();
|
|
if (s3 !== peg$FAILED) {
|
|
while (s3 !== peg$FAILED) {
|
|
s2.push(s3);
|
|
s3 = peg$parseinline_part();
|
|
}
|
|
} else {
|
|
s2 = peg$c3;
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 34) {
|
|
s3 = peg$c74;
|
|
peg$currPos++;
|
|
} else {
|
|
s3 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c75); }
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c78(s2);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
}
|
|
}
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c73); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parseinline_part() {
|
|
var s0, s1;
|
|
|
|
s0 = peg$parsespecial();
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$parsereference();
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$currPos;
|
|
s1 = peg$parseliteral();
|
|
if (s1 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c79(s1);
|
|
}
|
|
s0 = s1;
|
|
}
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsebuffer() {
|
|
var s0, s1, s2, s3, s4, s5, s6, s7;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = peg$parseeol();
|
|
if (s1 !== peg$FAILED) {
|
|
s2 = [];
|
|
s3 = peg$parsews();
|
|
while (s3 !== peg$FAILED) {
|
|
s2.push(s3);
|
|
s3 = peg$parsews();
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c81(s1, s2);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$currPos;
|
|
s1 = [];
|
|
s2 = peg$currPos;
|
|
s3 = peg$currPos;
|
|
peg$silentFails++;
|
|
s4 = peg$parsetag();
|
|
peg$silentFails--;
|
|
if (s4 === peg$FAILED) {
|
|
s3 = peg$c6;
|
|
} else {
|
|
peg$currPos = s3;
|
|
s3 = peg$c3;
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$currPos;
|
|
peg$silentFails++;
|
|
s5 = peg$parseraw();
|
|
peg$silentFails--;
|
|
if (s5 === peg$FAILED) {
|
|
s4 = peg$c6;
|
|
} else {
|
|
peg$currPos = s4;
|
|
s4 = peg$c3;
|
|
}
|
|
if (s4 !== peg$FAILED) {
|
|
s5 = peg$currPos;
|
|
peg$silentFails++;
|
|
s6 = peg$parsecomment();
|
|
peg$silentFails--;
|
|
if (s6 === peg$FAILED) {
|
|
s5 = peg$c6;
|
|
} else {
|
|
peg$currPos = s5;
|
|
s5 = peg$c3;
|
|
}
|
|
if (s5 !== peg$FAILED) {
|
|
s6 = peg$currPos;
|
|
peg$silentFails++;
|
|
s7 = peg$parseeol();
|
|
peg$silentFails--;
|
|
if (s7 === peg$FAILED) {
|
|
s6 = peg$c6;
|
|
} else {
|
|
peg$currPos = s6;
|
|
s6 = peg$c3;
|
|
}
|
|
if (s6 !== peg$FAILED) {
|
|
if (input.length > peg$currPos) {
|
|
s7 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s7 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c82); }
|
|
}
|
|
if (s7 !== peg$FAILED) {
|
|
peg$reportedPos = s2;
|
|
s3 = peg$c83(s7);
|
|
s2 = s3;
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
while (s2 !== peg$FAILED) {
|
|
s1.push(s2);
|
|
s2 = peg$currPos;
|
|
s3 = peg$currPos;
|
|
peg$silentFails++;
|
|
s4 = peg$parsetag();
|
|
peg$silentFails--;
|
|
if (s4 === peg$FAILED) {
|
|
s3 = peg$c6;
|
|
} else {
|
|
peg$currPos = s3;
|
|
s3 = peg$c3;
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$currPos;
|
|
peg$silentFails++;
|
|
s5 = peg$parseraw();
|
|
peg$silentFails--;
|
|
if (s5 === peg$FAILED) {
|
|
s4 = peg$c6;
|
|
} else {
|
|
peg$currPos = s4;
|
|
s4 = peg$c3;
|
|
}
|
|
if (s4 !== peg$FAILED) {
|
|
s5 = peg$currPos;
|
|
peg$silentFails++;
|
|
s6 = peg$parsecomment();
|
|
peg$silentFails--;
|
|
if (s6 === peg$FAILED) {
|
|
s5 = peg$c6;
|
|
} else {
|
|
peg$currPos = s5;
|
|
s5 = peg$c3;
|
|
}
|
|
if (s5 !== peg$FAILED) {
|
|
s6 = peg$currPos;
|
|
peg$silentFails++;
|
|
s7 = peg$parseeol();
|
|
peg$silentFails--;
|
|
if (s7 === peg$FAILED) {
|
|
s6 = peg$c6;
|
|
} else {
|
|
peg$currPos = s6;
|
|
s6 = peg$c3;
|
|
}
|
|
if (s6 !== peg$FAILED) {
|
|
if (input.length > peg$currPos) {
|
|
s7 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s7 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c82); }
|
|
}
|
|
if (s7 !== peg$FAILED) {
|
|
peg$reportedPos = s2;
|
|
s3 = peg$c83(s7);
|
|
s2 = s3;
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
}
|
|
} else {
|
|
s1 = peg$c3;
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c84(s1);
|
|
}
|
|
s0 = s1;
|
|
}
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c80); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parseliteral() {
|
|
var s0, s1, s2, s3, s4;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
s1 = [];
|
|
s2 = peg$currPos;
|
|
s3 = peg$currPos;
|
|
peg$silentFails++;
|
|
s4 = peg$parsetag();
|
|
peg$silentFails--;
|
|
if (s4 === peg$FAILED) {
|
|
s3 = peg$c6;
|
|
} else {
|
|
peg$currPos = s3;
|
|
s3 = peg$c3;
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$parseesc();
|
|
if (s4 === peg$FAILED) {
|
|
if (peg$c86.test(input.charAt(peg$currPos))) {
|
|
s4 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s4 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c87); }
|
|
}
|
|
}
|
|
if (s4 !== peg$FAILED) {
|
|
peg$reportedPos = s2;
|
|
s3 = peg$c83(s4);
|
|
s2 = s3;
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
while (s2 !== peg$FAILED) {
|
|
s1.push(s2);
|
|
s2 = peg$currPos;
|
|
s3 = peg$currPos;
|
|
peg$silentFails++;
|
|
s4 = peg$parsetag();
|
|
peg$silentFails--;
|
|
if (s4 === peg$FAILED) {
|
|
s3 = peg$c6;
|
|
} else {
|
|
peg$currPos = s3;
|
|
s3 = peg$c3;
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = peg$parseesc();
|
|
if (s4 === peg$FAILED) {
|
|
if (peg$c86.test(input.charAt(peg$currPos))) {
|
|
s4 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s4 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c87); }
|
|
}
|
|
}
|
|
if (s4 !== peg$FAILED) {
|
|
peg$reportedPos = s2;
|
|
s3 = peg$c83(s4);
|
|
s2 = s3;
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s2;
|
|
s2 = peg$c3;
|
|
}
|
|
}
|
|
} else {
|
|
s1 = peg$c3;
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c88(s1);
|
|
}
|
|
s0 = s1;
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c85); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parseesc() {
|
|
var s0, s1;
|
|
|
|
s0 = peg$currPos;
|
|
if (input.substr(peg$currPos, 2) === peg$c89) {
|
|
s1 = peg$c89;
|
|
peg$currPos += 2;
|
|
} else {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c90); }
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c91();
|
|
}
|
|
s0 = s1;
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parseraw() {
|
|
var s0, s1, s2, s3, s4, s5;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
if (input.substr(peg$currPos, 2) === peg$c93) {
|
|
s1 = peg$c93;
|
|
peg$currPos += 2;
|
|
} else {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c94); }
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
s2 = [];
|
|
s3 = peg$currPos;
|
|
s4 = peg$currPos;
|
|
peg$silentFails++;
|
|
if (input.substr(peg$currPos, 2) === peg$c95) {
|
|
s5 = peg$c95;
|
|
peg$currPos += 2;
|
|
} else {
|
|
s5 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c96); }
|
|
}
|
|
peg$silentFails--;
|
|
if (s5 === peg$FAILED) {
|
|
s4 = peg$c6;
|
|
} else {
|
|
peg$currPos = s4;
|
|
s4 = peg$c3;
|
|
}
|
|
if (s4 !== peg$FAILED) {
|
|
if (input.length > peg$currPos) {
|
|
s5 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s5 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c82); }
|
|
}
|
|
if (s5 !== peg$FAILED) {
|
|
peg$reportedPos = s3;
|
|
s4 = peg$c97(s5);
|
|
s3 = s4;
|
|
} else {
|
|
peg$currPos = s3;
|
|
s3 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s3;
|
|
s3 = peg$c3;
|
|
}
|
|
while (s3 !== peg$FAILED) {
|
|
s2.push(s3);
|
|
s3 = peg$currPos;
|
|
s4 = peg$currPos;
|
|
peg$silentFails++;
|
|
if (input.substr(peg$currPos, 2) === peg$c95) {
|
|
s5 = peg$c95;
|
|
peg$currPos += 2;
|
|
} else {
|
|
s5 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c96); }
|
|
}
|
|
peg$silentFails--;
|
|
if (s5 === peg$FAILED) {
|
|
s4 = peg$c6;
|
|
} else {
|
|
peg$currPos = s4;
|
|
s4 = peg$c3;
|
|
}
|
|
if (s4 !== peg$FAILED) {
|
|
if (input.length > peg$currPos) {
|
|
s5 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s5 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c82); }
|
|
}
|
|
if (s5 !== peg$FAILED) {
|
|
peg$reportedPos = s3;
|
|
s4 = peg$c97(s5);
|
|
s3 = s4;
|
|
} else {
|
|
peg$currPos = s3;
|
|
s3 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s3;
|
|
s3 = peg$c3;
|
|
}
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
if (input.substr(peg$currPos, 2) === peg$c95) {
|
|
s3 = peg$c95;
|
|
peg$currPos += 2;
|
|
} else {
|
|
s3 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c96); }
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c98(s2);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c92); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsecomment() {
|
|
var s0, s1, s2, s3, s4, s5;
|
|
|
|
peg$silentFails++;
|
|
s0 = peg$currPos;
|
|
if (input.substr(peg$currPos, 2) === peg$c100) {
|
|
s1 = peg$c100;
|
|
peg$currPos += 2;
|
|
} else {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c101); }
|
|
}
|
|
if (s1 !== peg$FAILED) {
|
|
s2 = [];
|
|
s3 = peg$currPos;
|
|
s4 = peg$currPos;
|
|
peg$silentFails++;
|
|
if (input.substr(peg$currPos, 2) === peg$c102) {
|
|
s5 = peg$c102;
|
|
peg$currPos += 2;
|
|
} else {
|
|
s5 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c103); }
|
|
}
|
|
peg$silentFails--;
|
|
if (s5 === peg$FAILED) {
|
|
s4 = peg$c6;
|
|
} else {
|
|
peg$currPos = s4;
|
|
s4 = peg$c3;
|
|
}
|
|
if (s4 !== peg$FAILED) {
|
|
if (input.length > peg$currPos) {
|
|
s5 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s5 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c82); }
|
|
}
|
|
if (s5 !== peg$FAILED) {
|
|
peg$reportedPos = s3;
|
|
s4 = peg$c83(s5);
|
|
s3 = s4;
|
|
} else {
|
|
peg$currPos = s3;
|
|
s3 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s3;
|
|
s3 = peg$c3;
|
|
}
|
|
while (s3 !== peg$FAILED) {
|
|
s2.push(s3);
|
|
s3 = peg$currPos;
|
|
s4 = peg$currPos;
|
|
peg$silentFails++;
|
|
if (input.substr(peg$currPos, 2) === peg$c102) {
|
|
s5 = peg$c102;
|
|
peg$currPos += 2;
|
|
} else {
|
|
s5 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c103); }
|
|
}
|
|
peg$silentFails--;
|
|
if (s5 === peg$FAILED) {
|
|
s4 = peg$c6;
|
|
} else {
|
|
peg$currPos = s4;
|
|
s4 = peg$c3;
|
|
}
|
|
if (s4 !== peg$FAILED) {
|
|
if (input.length > peg$currPos) {
|
|
s5 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s5 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c82); }
|
|
}
|
|
if (s5 !== peg$FAILED) {
|
|
peg$reportedPos = s3;
|
|
s4 = peg$c83(s5);
|
|
s3 = s4;
|
|
} else {
|
|
peg$currPos = s3;
|
|
s3 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s3;
|
|
s3 = peg$c3;
|
|
}
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
if (input.substr(peg$currPos, 2) === peg$c102) {
|
|
s3 = peg$c102;
|
|
peg$currPos += 2;
|
|
} else {
|
|
s3 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c103); }
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
peg$reportedPos = s0;
|
|
s1 = peg$c104(s2);
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
peg$silentFails--;
|
|
if (s0 === peg$FAILED) {
|
|
s1 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c99); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsetag() {
|
|
var s0, s1, s2, s3, s4, s5, s6, s7, s8, s9;
|
|
|
|
s0 = peg$currPos;
|
|
s1 = peg$parseld();
|
|
if (s1 !== peg$FAILED) {
|
|
s2 = [];
|
|
s3 = peg$parsews();
|
|
while (s3 !== peg$FAILED) {
|
|
s2.push(s3);
|
|
s3 = peg$parsews();
|
|
}
|
|
if (s2 !== peg$FAILED) {
|
|
if (peg$c105.test(input.charAt(peg$currPos))) {
|
|
s3 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s3 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c106); }
|
|
}
|
|
if (s3 !== peg$FAILED) {
|
|
s4 = [];
|
|
s5 = peg$parsews();
|
|
while (s5 !== peg$FAILED) {
|
|
s4.push(s5);
|
|
s5 = peg$parsews();
|
|
}
|
|
if (s4 !== peg$FAILED) {
|
|
s5 = [];
|
|
s6 = peg$currPos;
|
|
s7 = peg$currPos;
|
|
peg$silentFails++;
|
|
s8 = peg$parserd();
|
|
peg$silentFails--;
|
|
if (s8 === peg$FAILED) {
|
|
s7 = peg$c6;
|
|
} else {
|
|
peg$currPos = s7;
|
|
s7 = peg$c3;
|
|
}
|
|
if (s7 !== peg$FAILED) {
|
|
s8 = peg$currPos;
|
|
peg$silentFails++;
|
|
s9 = peg$parseeol();
|
|
peg$silentFails--;
|
|
if (s9 === peg$FAILED) {
|
|
s8 = peg$c6;
|
|
} else {
|
|
peg$currPos = s8;
|
|
s8 = peg$c3;
|
|
}
|
|
if (s8 !== peg$FAILED) {
|
|
if (input.length > peg$currPos) {
|
|
s9 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s9 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c82); }
|
|
}
|
|
if (s9 !== peg$FAILED) {
|
|
s7 = [s7, s8, s9];
|
|
s6 = s7;
|
|
} else {
|
|
peg$currPos = s6;
|
|
s6 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s6;
|
|
s6 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s6;
|
|
s6 = peg$c3;
|
|
}
|
|
if (s6 !== peg$FAILED) {
|
|
while (s6 !== peg$FAILED) {
|
|
s5.push(s6);
|
|
s6 = peg$currPos;
|
|
s7 = peg$currPos;
|
|
peg$silentFails++;
|
|
s8 = peg$parserd();
|
|
peg$silentFails--;
|
|
if (s8 === peg$FAILED) {
|
|
s7 = peg$c6;
|
|
} else {
|
|
peg$currPos = s7;
|
|
s7 = peg$c3;
|
|
}
|
|
if (s7 !== peg$FAILED) {
|
|
s8 = peg$currPos;
|
|
peg$silentFails++;
|
|
s9 = peg$parseeol();
|
|
peg$silentFails--;
|
|
if (s9 === peg$FAILED) {
|
|
s8 = peg$c6;
|
|
} else {
|
|
peg$currPos = s8;
|
|
s8 = peg$c3;
|
|
}
|
|
if (s8 !== peg$FAILED) {
|
|
if (input.length > peg$currPos) {
|
|
s9 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s9 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c82); }
|
|
}
|
|
if (s9 !== peg$FAILED) {
|
|
s7 = [s7, s8, s9];
|
|
s6 = s7;
|
|
} else {
|
|
peg$currPos = s6;
|
|
s6 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s6;
|
|
s6 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s6;
|
|
s6 = peg$c3;
|
|
}
|
|
}
|
|
} else {
|
|
s5 = peg$c3;
|
|
}
|
|
if (s5 !== peg$FAILED) {
|
|
s6 = [];
|
|
s7 = peg$parsews();
|
|
while (s7 !== peg$FAILED) {
|
|
s6.push(s7);
|
|
s7 = peg$parsews();
|
|
}
|
|
if (s6 !== peg$FAILED) {
|
|
s7 = peg$parserd();
|
|
if (s7 !== peg$FAILED) {
|
|
s1 = [s1, s2, s3, s4, s5, s6, s7];
|
|
s0 = s1;
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
} else {
|
|
peg$currPos = s0;
|
|
s0 = peg$c3;
|
|
}
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$parsereference();
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parseld() {
|
|
var s0;
|
|
|
|
if (input.charCodeAt(peg$currPos) === 123) {
|
|
s0 = peg$c107;
|
|
peg$currPos++;
|
|
} else {
|
|
s0 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c108); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parserd() {
|
|
var s0;
|
|
|
|
if (input.charCodeAt(peg$currPos) === 125) {
|
|
s0 = peg$c109;
|
|
peg$currPos++;
|
|
} else {
|
|
s0 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c110); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parselb() {
|
|
var s0;
|
|
|
|
if (input.charCodeAt(peg$currPos) === 91) {
|
|
s0 = peg$c111;
|
|
peg$currPos++;
|
|
} else {
|
|
s0 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c112); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parserb() {
|
|
var s0;
|
|
|
|
if (input.charCodeAt(peg$currPos) === 93) {
|
|
s0 = peg$c113;
|
|
peg$currPos++;
|
|
} else {
|
|
s0 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c114); }
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parseeol() {
|
|
var s0;
|
|
|
|
if (input.charCodeAt(peg$currPos) === 10) {
|
|
s0 = peg$c115;
|
|
peg$currPos++;
|
|
} else {
|
|
s0 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c116); }
|
|
}
|
|
if (s0 === peg$FAILED) {
|
|
if (input.substr(peg$currPos, 2) === peg$c117) {
|
|
s0 = peg$c117;
|
|
peg$currPos += 2;
|
|
} else {
|
|
s0 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c118); }
|
|
}
|
|
if (s0 === peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 13) {
|
|
s0 = peg$c119;
|
|
peg$currPos++;
|
|
} else {
|
|
s0 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c120); }
|
|
}
|
|
if (s0 === peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 8232) {
|
|
s0 = peg$c121;
|
|
peg$currPos++;
|
|
} else {
|
|
s0 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c122); }
|
|
}
|
|
if (s0 === peg$FAILED) {
|
|
if (input.charCodeAt(peg$currPos) === 8233) {
|
|
s0 = peg$c123;
|
|
peg$currPos++;
|
|
} else {
|
|
s0 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c124); }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
function peg$parsews() {
|
|
var s0;
|
|
|
|
if (peg$c125.test(input.charAt(peg$currPos))) {
|
|
s0 = input.charAt(peg$currPos);
|
|
peg$currPos++;
|
|
} else {
|
|
s0 = peg$FAILED;
|
|
if (peg$silentFails === 0) { peg$fail(peg$c126); }
|
|
}
|
|
if (s0 === peg$FAILED) {
|
|
s0 = peg$parseeol();
|
|
}
|
|
|
|
return s0;
|
|
}
|
|
|
|
peg$result = peg$startRuleFunction();
|
|
|
|
if (peg$result !== peg$FAILED && peg$currPos === input.length) {
|
|
return peg$result;
|
|
} else {
|
|
if (peg$result !== peg$FAILED && peg$currPos < input.length) {
|
|
peg$fail({ type: "end", description: "end of input" });
|
|
}
|
|
|
|
throw peg$buildException(null, peg$maxFailExpected, peg$maxFailPos);
|
|
}
|
|
}
|
|
|
|
return {
|
|
SyntaxError: SyntaxError,
|
|
parse: parse
|
|
};
|
|
})();
|
|
|
|
// expose parser methods
|
|
dust.parse = parser.parse;
|
|
|
|
return parser;
|
|
}));
|
|
|
|
|
|
|
|
(function(root, factory) {
|
|
if (typeof exports === 'object') {
|
|
// in Node, require this file if we want to use the compiler as a standalone module
|
|
module.exports = factory(require('./parser').parse, require('./dust'));
|
|
} else {
|
|
// in the browser, store the factory output if we want to use the compiler directly
|
|
factory(root.dust.parse, root.dust);
|
|
}
|
|
}(this, function(parse, dust) {
|
|
var compiler = {},
|
|
isArray = dust.isArray;
|
|
|
|
|
|
compiler.compile = function(source, name) {
|
|
// the name parameter is optional.
|
|
// this can happen for templates that are rendered immediately (renderSource which calls compileFn) or
|
|
// for templates that are compiled as a callable (compileFn)
|
|
//
|
|
// for the common case (using compile and render) a name is required so that templates will be cached by name and rendered later, by name.
|
|
if (!name && name !== null) {
|
|
throw new Error('Template name parameter cannot be undefined when calling dust.compile');
|
|
}
|
|
|
|
try {
|
|
var ast = filterAST(parse(source));
|
|
return compile(ast, name);
|
|
}
|
|
catch (err)
|
|
{
|
|
if (!err.line || !err.column) {
|
|
throw err;
|
|
}
|
|
throw new SyntaxError(err.message + ' At line : ' + err.line + ', column : ' + err.column);
|
|
}
|
|
};
|
|
|
|
function filterAST(ast) {
|
|
var context = {};
|
|
return compiler.filterNode(context, ast);
|
|
}
|
|
|
|
compiler.filterNode = function(context, node) {
|
|
return compiler.optimizers[node[0]](context, node);
|
|
};
|
|
|
|
compiler.optimizers = {
|
|
body: compactBuffers,
|
|
buffer: noop,
|
|
special: convertSpecial,
|
|
format: nullify, // TODO: convert format
|
|
reference: visit,
|
|
'#': visit,
|
|
'?': visit,
|
|
'^': visit,
|
|
'<': visit,
|
|
'+': visit,
|
|
'@': visit,
|
|
'%': visit,
|
|
partial: visit,
|
|
context: visit,
|
|
params: visit,
|
|
bodies: visit,
|
|
param: visit,
|
|
filters: noop,
|
|
key: noop,
|
|
path: noop,
|
|
literal: noop,
|
|
raw: noop,
|
|
comment: nullify,
|
|
line: nullify,
|
|
col: nullify
|
|
};
|
|
|
|
compiler.pragmas = {
|
|
esc: function(compiler, context, bodies, params) {
|
|
var old = compiler.auto,
|
|
out;
|
|
if (!context) {
|
|
context = 'h';
|
|
}
|
|
compiler.auto = (context === 's') ? '' : context;
|
|
out = compileParts(compiler, bodies.block);
|
|
compiler.auto = old;
|
|
return out;
|
|
}
|
|
};
|
|
|
|
function visit(context, node) {
|
|
var out = [node[0]],
|
|
i, len, res;
|
|
for (i=1, len=node.length; i<len; i++) {
|
|
res = compiler.filterNode(context, node[i]);
|
|
if (res) {
|
|
out.push(res);
|
|
}
|
|
}
|
|
return out;
|
|
}
|
|
|
|
// Compacts consecutive buffer nodes into a single node
|
|
function compactBuffers(context, node) {
|
|
var out = [node[0]],
|
|
memo, i, len, res;
|
|
for (i=1, len=node.length; i<len; i++) {
|
|
res = compiler.filterNode(context, node[i]);
|
|
if (res) {
|
|
if (res[0] === 'buffer') {
|
|
if (memo) {
|
|
memo[1] += res[1];
|
|
} else {
|
|
memo = res;
|
|
out.push(res);
|
|
}
|
|
} else {
|
|
memo = null;
|
|
out.push(res);
|
|
}
|
|
}
|
|
}
|
|
return out;
|
|
}
|
|
|
|
var specialChars = {
|
|
's': ' ',
|
|
'n': '\n',
|
|
'r': '\r',
|
|
'lb': '{',
|
|
'rb': '}'
|
|
};
|
|
|
|
function convertSpecial(context, node) {
|
|
return ['buffer', specialChars[node[1]]];
|
|
}
|
|
|
|
function noop(context, node) {
|
|
return node;
|
|
}
|
|
|
|
function nullify(){}
|
|
|
|
function compile(ast, name) {
|
|
var context = {
|
|
name: name,
|
|
bodies: [],
|
|
blocks: {},
|
|
index: 0,
|
|
auto: 'h'
|
|
};
|
|
|
|
return '(function(){dust.register(' +
|
|
(name ? '"' + name + '"' : 'null') + ',' +
|
|
compiler.compileNode(context, ast) +
|
|
');' +
|
|
compileBlocks(context) +
|
|
compileBodies(context) +
|
|
'return body_0;' +
|
|
'})();';
|
|
}
|
|
|
|
function compileBlocks(context) {
|
|
var out = [],
|
|
blocks = context.blocks,
|
|
name;
|
|
|
|
for (name in blocks) {
|
|
out.push('"' + name + '":' + blocks[name]);
|
|
}
|
|
if (out.length) {
|
|
context.blocks = 'ctx=ctx.shiftBlocks(blocks);';
|
|
return 'var blocks={' + out.join(',') + '};';
|
|
}
|
|
return context.blocks = '';
|
|
}
|
|
|
|
function compileBodies(context) {
|
|
var out = [],
|
|
bodies = context.bodies,
|
|
blx = context.blocks,
|
|
i, len;
|
|
|
|
for (i=0, len=bodies.length; i<len; i++) {
|
|
out[i] = 'function body_' + i + '(chk,ctx){' +
|
|
blx + 'return chk' + bodies[i] + ';}';
|
|
}
|
|
return out.join('');
|
|
}
|
|
|
|
function compileParts(context, body) {
|
|
var parts = '',
|
|
i, len;
|
|
for (i=1, len=body.length; i<len; i++) {
|
|
parts += compiler.compileNode(context, body[i]);
|
|
}
|
|
return parts;
|
|
}
|
|
|
|
compiler.compileNode = function(context, node) {
|
|
return compiler.nodes[node[0]](context, node);
|
|
};
|
|
|
|
compiler.nodes = {
|
|
body: function(context, node) {
|
|
var id = context.index++,
|
|
name = 'body_' + id;
|
|
context.bodies[id] = compileParts(context, node);
|
|
return name;
|
|
},
|
|
|
|
buffer: function(context, node) {
|
|
return '.write(' + escape(node[1]) + ')';
|
|
},
|
|
|
|
format: function(context, node) {
|
|
return '.write(' + escape(node[1] + node[2]) + ')';
|
|
},
|
|
|
|
reference: function(context, node) {
|
|
return '.reference(' + compiler.compileNode(context, node[1]) +
|
|
',ctx,' + compiler.compileNode(context, node[2]) + ')';
|
|
},
|
|
|
|
'#': function(context, node) {
|
|
return compileSection(context, node, 'section');
|
|
},
|
|
|
|
'?': function(context, node) {
|
|
return compileSection(context, node, 'exists');
|
|
},
|
|
|
|
'^': function(context, node) {
|
|
return compileSection(context, node, 'notexists');
|
|
},
|
|
|
|
'<': function(context, node) {
|
|
var bodies = node[4];
|
|
for (var i=1, len=bodies.length; i<len; i++) {
|
|
var param = bodies[i],
|
|
type = param[1][1];
|
|
if (type === 'block') {
|
|
context.blocks[node[1].text] = compiler.compileNode(context, param[2]);
|
|
return '';
|
|
}
|
|
}
|
|
return '';
|
|
},
|
|
|
|
'+': function(context, node) {
|
|
if (typeof(node[1].text) === 'undefined' && typeof(node[4]) === 'undefined'){
|
|
return '.block(ctx.getBlock(' +
|
|
compiler.compileNode(context, node[1]) +
|
|
',chk, ctx),' + compiler.compileNode(context, node[2]) + ', {},' +
|
|
compiler.compileNode(context, node[3]) +
|
|
')';
|
|
} else {
|
|
return '.block(ctx.getBlock(' +
|
|
escape(node[1].text) +
|
|
'),' + compiler.compileNode(context, node[2]) + ',' +
|
|
compiler.compileNode(context, node[4]) + ',' +
|
|
compiler.compileNode(context, node[3]) +
|
|
')';
|
|
}
|
|
},
|
|
|
|
'@': function(context, node) {
|
|
return '.helper(' +
|
|
escape(node[1].text) +
|
|
',' + compiler.compileNode(context, node[2]) + ',' +
|
|
compiler.compileNode(context, node[4]) + ',' +
|
|
compiler.compileNode(context, node[3]) +
|
|
')';
|
|
},
|
|
|
|
'%': function(context, node) {
|
|
// TODO: Move these hacks into pragma precompiler
|
|
var name = node[1][1],
|
|
rawBodies,
|
|
bodies,
|
|
rawParams,
|
|
params,
|
|
ctx, b, p, i, len;
|
|
if (!compiler.pragmas[name]) {
|
|
return '';
|
|
}
|
|
|
|
rawBodies = node[4];
|
|
bodies = {};
|
|
for (i=1, len=rawBodies.length; i<len; i++) {
|
|
b = rawBodies[i];
|
|
bodies[b[1][1]] = b[2];
|
|
}
|
|
|
|
rawParams = node[3];
|
|
params = {};
|
|
for (i=1, len=rawParams.length; i<len; i++) {
|
|
p = rawParams[i];
|
|
params[p[1][1]] = p[2][1];
|
|
}
|
|
|
|
ctx = node[2][1] ? node[2][1].text : null;
|
|
|
|
return compiler.pragmas[name](context, ctx, bodies, params);
|
|
},
|
|
|
|
partial: function(context, node) {
|
|
return '.partial(' +
|
|
compiler.compileNode(context, node[1]) +
|
|
',' + compiler.compileNode(context, node[2]) +
|
|
',' + compiler.compileNode(context, node[3]) + ')';
|
|
},
|
|
|
|
context: function(context, node) {
|
|
if (node[1]) {
|
|
return 'ctx.rebase(' + compiler.compileNode(context, node[1]) + ')';
|
|
}
|
|
return 'ctx';
|
|
},
|
|
|
|
params: function(context, node) {
|
|
var out = [];
|
|
for (var i=1, len=node.length; i<len; i++) {
|
|
out.push(compiler.compileNode(context, node[i]));
|
|
}
|
|
if (out.length) {
|
|
return '{' + out.join(',') + '}';
|
|
}
|
|
return '{}';
|
|
},
|
|
|
|
bodies: function(context, node) {
|
|
var out = [];
|
|
for (var i=1, len=node.length; i<len; i++) {
|
|
out.push(compiler.compileNode(context, node[i]));
|
|
}
|
|
return '{' + out.join(',') + '}';
|
|
},
|
|
|
|
param: function(context, node) {
|
|
return compiler.compileNode(context, node[1]) + ':' + compiler.compileNode(context, node[2]);
|
|
},
|
|
|
|
filters: function(context, node) {
|
|
var list = [];
|
|
for (var i=1, len=node.length; i<len; i++) {
|
|
var filter = node[i];
|
|
list.push('"' + filter + '"');
|
|
}
|
|
return '"' + context.auto + '"' +
|
|
(list.length ? ',[' + list.join(',') + ']' : '');
|
|
},
|
|
|
|
key: function(context, node) {
|
|
return 'ctx.get(["' + node[1] + '"], false)';
|
|
},
|
|
|
|
path: function(context, node) {
|
|
var current = node[1],
|
|
keys = node[2],
|
|
list = [];
|
|
|
|
for (var i=0,len=keys.length; i<len; i++) {
|
|
if (isArray(keys[i])) {
|
|
list.push(compiler.compileNode(context, keys[i]));
|
|
} else {
|
|
list.push('"' + keys[i] + '"');
|
|
}
|
|
}
|
|
return 'ctx.getPath(' + current + ', [' + list.join(',') + '])';
|
|
},
|
|
|
|
literal: function(context, node) {
|
|
return escape(node[1]);
|
|
},
|
|
raw: function(context, node) {
|
|
return ".write(" + escape(node[1]) + ")";
|
|
}
|
|
};
|
|
|
|
function compileSection(context, node, cmd) {
|
|
return '.' + cmd + '(' +
|
|
compiler.compileNode(context, node[1]) +
|
|
',' + compiler.compileNode(context, node[2]) + ',' +
|
|
compiler.compileNode(context, node[4]) + ',' +
|
|
compiler.compileNode(context, node[3]) +
|
|
')';
|
|
}
|
|
|
|
var BS = /\\/g,
|
|
DQ = /"/g,
|
|
LF = /\f/g,
|
|
NL = /\n/g,
|
|
CR = /\r/g,
|
|
TB = /\t/g;
|
|
function escapeToJsSafeString(str) {
|
|
return str.replace(BS, '\\\\')
|
|
.replace(DQ, '\\"')
|
|
.replace(LF, '\\f')
|
|
.replace(NL, '\\n')
|
|
.replace(CR, '\\r')
|
|
.replace(TB, '\\t');
|
|
}
|
|
|
|
var escape = (typeof JSON === 'undefined') ?
|
|
function(str) { return '"' + escapeToJsSafeString(str) + '"';} :
|
|
JSON.stringify;
|
|
|
|
// expose compiler methods
|
|
dust.compile = compiler.compile;
|
|
dust.filterNode = compiler.filterNode;
|
|
dust.optimizers = compiler.optimizers;
|
|
dust.pragmas = compiler.pragmas;
|
|
dust.compileNode = compiler.compileNode;
|
|
dust.nodes = compiler.nodes;
|
|
|
|
return compiler;
|
|
|
|
}));
|
|
|