Handbook
Glossary
(comment-end-state) ( document n/f string ch/f -- document n'/f string )
Vocabulary
html5
Inputs
document
an
object
n/f
an
object
string
an
object
ch/f
an
object
Outputs
document
an
object
n'/f
an
object
string
an
object
Definition
USING:
combinators
kernel
;
IN:
html5
:
(comment-end-state)
( document n/f string ch/f -- document n'/f string )
{
{
[
dup
62
=
]
[
drop
pick
emit-comment-token
data-state
]
}
{
[
dup
33
=
]
[
drop
comment-end-bang-state
]
}
{
[
dup
45
=
]
[
reach
push-comment-token
comment-end-state
]
}
{
[
dup
f
=
]
[
drop
eof-in-comment
pick
[
emit-comment-token
]
[
emit-eof
]
bi
]
}
[
[
"--"
reach
push-all-comment-token
]
dip
(comment-state)
]
}
cond
;