From 4fe32cee8c727ed08d0c9a444aae66bc35c3e79b Mon Sep 17 00:00:00 2001 From: David Majda Date: Sun, 6 Jan 2013 16:00:09 +0100 Subject: [PATCH] Fix indentation --- lib/compiler/passes/generate-javascript.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/compiler/passes/generate-javascript.js b/lib/compiler/passes/generate-javascript.js index 3083107..0c57d24 100644 --- a/lib/compiler/passes/generate-javascript.js +++ b/lib/compiler/passes/generate-javascript.js @@ -546,9 +546,9 @@ module.exports = function(ast, options) { case op.MATCH_STRING_IC: // MATCH_STRING_IC s, a, f, ... compileCondition( 'input.substr(peg$currPos, ' - + ast.consts[bc[ip + 1]].length - + ').toLowerCase() === ' - + c(bc[ip + 1]), + + ast.consts[bc[ip + 1]].length + + ').toLowerCase() === ' + + c(bc[ip + 1]), 1 ); break;