Add missing semicolons

redux
David Majda 8 years ago
parent b81afb1471
commit 7495e6e03f

@ -1039,7 +1039,7 @@ function generateJS(ast, options) {
" }",
"",
" function expected(description, location) {",
" location = location !== undefined ? location : peg$computeLocation(peg$savedPos, peg$currPos)",
" location = location !== undefined ? location : peg$computeLocation(peg$savedPos, peg$currPos);",
"",
" throw peg$buildStructuredError(",
" [peg$otherExpectation(description)],",
@ -1049,7 +1049,7 @@ function generateJS(ast, options) {
" }",
"",
" function error(message, location) {",
" location = location !== undefined ? location : peg$computeLocation(peg$savedPos, peg$currPos)",
" location = location !== undefined ? location : peg$computeLocation(peg$savedPos, peg$currPos);",
"",
" throw peg$buildSimpleError(message, location);",
" }",

@ -509,7 +509,7 @@ function peg$parse(input, options) {
}
function expected(description, location) {
location = location !== undefined ? location : peg$computeLocation(peg$savedPos, peg$currPos)
location = location !== undefined ? location : peg$computeLocation(peg$savedPos, peg$currPos);
throw peg$buildStructuredError(
[peg$otherExpectation(description)],
@ -519,7 +519,7 @@ function peg$parse(input, options) {
}
function error(message, location) {
location = location !== undefined ? location : peg$computeLocation(peg$savedPos, peg$currPos)
location = location !== undefined ? location : peg$computeLocation(peg$savedPos, peg$currPos);
throw peg$buildSimpleError(message, location);
}

Loading…
Cancel
Save