Files
smnp-py/smnp/token/tokenizers/function.py
2019-07-06 00:20:36 +02:00

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)