~ecs/hare.lua

6909930952401c880d5dc9a7aa40a3bef4f4f61f — Alexey Yerin 3 years ago f0e75ed
Add yield
1 files changed, 1 insertions(+), 1 deletions(-)

M hare.lua
M hare.lua => hare.lua +1 -1
@@ 21,7 21,7 @@ local identifier = token(l.IDENTIFIER, l.word)
local keyword = token(l.KEYWORD, word_match{
	'let', 'const', 'fn', 'def', 'static', 'export', 'defer', 'for',
	'while', 'return', 'break', 'continue', 'if', 'else', 'match',
	'switch', 'type'
	'switch', 'type', 'yield',
})

local operator = token(l.OPERATOR, word_match{