6 lines
196 B
Python
6 lines
196 B
Python
from smnp.token.tools import tokenizeChar
|
|
from smnp.token.type import TokenType
|
|
|
|
def tokenizeAsterisk(input, current, line):
|
|
return tokenizeChar(TokenType.ASTERISK, '*', input, current, line)
|