Merge pull request #341 from arlolra/split

Split up the work from #339
redux
David Majda 9 years ago
commit e0be643b7c

@ -1,3 +1,5 @@
language: node_js
node_js:
- 0.10
- "0.10"
- "0.12"
- "iojs"

@ -1011,11 +1011,11 @@ function generateJavascript(ast, options) {
' details.seenCR = false;',
' }',
'',
' p++',
' p++;',
' }',
'',
' peg$posDetailsCache[pos] = details;',
' return details',
' return details;',
' }',
' }',
'',

@ -450,11 +450,11 @@ module.exports = (function() {
details.seenCR = false;
}
p++
p++;
}
peg$posDetailsCache[pos] = details;
return details
return details;
}
}

@ -40,7 +40,7 @@
"main": "lib/peg",
"bin": "bin/pegjs",
"scripts": {
"test": "make spec"
"test": "make hint && make spec"
},
"repository": {
"type": "git",

Loading…
Cancel
Save