Implemented block instruction parsing

This commit is contained in:
2024-06-24 00:03:26 +02:00
parent 4fc1935183
commit dd495fab4e
6 changed files with 70 additions and 13 deletions

View File

@ -11,8 +11,8 @@ type Token struct {
Bytes []byte
}
// After returns the position after the token.
func (t *Token) After() int {
// End returns the position after the token.
func (t *Token) End() int {
return t.Position + len(t.Bytes)
}