From e990d04bc76024327394a88715997b9292cd7d2e Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Wed, 26 Sep 2012 15:51:05 +0200 Subject: [PATCH] Catch parser exception in the correct scope --- lib/carto/renderer.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/carto/renderer.js b/lib/carto/renderer.js index 4075d27..18bb225 100644 --- a/lib/carto/renderer.js +++ b/lib/carto/renderer.js @@ -27,6 +27,7 @@ carto.Renderer.prototype.render = function render(m, callback) { var output = []; // Transform stylesheets into rulesets. + try { // Parser may throw var rulesets = _(m.Stylesheet).chain() .map(function(s) { // Passing the environment from stylesheet to stylesheet, @@ -34,15 +35,14 @@ carto.Renderer.prototype.render = function render(m, callback) { env = _(env).extend({filename:s.id}); var time = +new Date(); - // Parser may throw - try { root = (carto.Parser(env)).parse(s.data); } - catch (err) { callback(err, null); return; } + root = (carto.Parser(env)).parse(s.data); if (env.benchmark) console.warn('Parsing time: ' + (new Date() - time) + 'ms'); return root.toList(env); }) .flatten() .value(); + } catch (err) { callback(err, null); return; } // Iterate through layers and create styles custom-built // for each of them, and apply those styles to the layers.