1
0
mirror of https://github.com/emkay/parser-6502.git synced 2025-07-05 11:24:10 +00:00
This commit is contained in:
Michael Matuzak
2016-10-07 10:45:55 -07:00
parent 8a077f9d66
commit cb0e34d1e3
7 changed files with 213 additions and 62 deletions

View File

@ -4,7 +4,7 @@ function label () {
return mona.sequence((s) => {
const label = s(mona.text(mona.alphanum()))
const end = s(mona.string(':'))
const nl = s(mona.eol())
// const nl = s(mona.eol())
return mona.value({
label: `${label}${end}`