core/asm: allow numbers in labels (#20362)
Numbers were already allowed when creating labels, just not when referencing them.
This commit is contained in:
parent
5d21667587
commit
3a0480e07d
@ -60,6 +60,14 @@ func TestLexer(t *testing.T) {
|
|||||||
input: "0123abc",
|
input: "0123abc",
|
||||||
tokens: []token{{typ: lineStart}, {typ: number, text: "0123"}, {typ: element, text: "abc"}, {typ: eof}},
|
tokens: []token{{typ: lineStart}, {typ: number, text: "0123"}, {typ: element, text: "abc"}, {typ: eof}},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
input: "@foo",
|
||||||
|
tokens: []token{{typ: lineStart}, {typ: label, text: "foo"}, {typ: eof}},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
input: "@label123",
|
||||||
|
tokens: []token{{typ: lineStart}, {typ: label, text: "label123"}, {typ: eof}},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
|
@ -234,7 +234,7 @@ func lexComment(l *lexer) stateFn {
|
|||||||
// the lex text state function to advance the parsing
|
// the lex text state function to advance the parsing
|
||||||
// process.
|
// process.
|
||||||
func lexLabel(l *lexer) stateFn {
|
func lexLabel(l *lexer) stateFn {
|
||||||
l.acceptRun(Alpha + "_")
|
l.acceptRun(Alpha + "_" + Numbers)
|
||||||
|
|
||||||
l.emit(label)
|
l.emit(label)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user