6 lines
209 B
Python
6 lines
209 B
Python
from smnp.token.tools import tokenizeKeyword
|
|
from smnp.token.type import TokenType
|
|
|
|
def tokenizeFunction(input, current, line):
|
|
return tokenizeKeyword(TokenType.FUNCTION, 'function', input, current, line)
|