-- Copyright 2006-2011 Mitchell mitchellcaladbolg.net. See LICENSE. -- Go LPeg lexer. local l = lexer local token, style, color, word_match = l.token, l.style, l.color, l.word_match local P, R, S = l.lpeg.P, l.lpeg.R, l.lpeg.S module(...) -- Whitespace. local ws = token(l.WHITESPACE, l.space^1) -- Comments. local line_comment = '//' * l.nonnewline^0 local block_comment = '/*' * (l.any - '*/')^0 * '*/' local comment = token(l.COMMENT, line_comment + block_comment) -- Strings. local sq_str = l.delimited_range("'", '\\', true, false, '\n') local dq_str = l.delimited_range('"', '\\', true, false, '\n') local raw_str = l.delimited_range('`', nil, true) local string = token(l.STRING, sq_str + dq_str + raw_str) -- Numbers. local number = token(l.NUMBER, (l.float + l.integer) * P('i')^-1) -- Keywords. local keyword = token(l.KEYWORD, word_match { 'break', 'case', 'chan', 'const', 'continue', 'default', 'defer', 'else', 'fallthrough', 'for', 'func', 'go', 'goto', 'if', 'import', 'interface', 'map', 'package', 'range', 'return', 'select', 'struct', 'switch', 'type', 'var' }) -- Constants. local constant = token(l.CONSTANT, word_match { 'true', 'false', 'iota', 'nil' }) -- Types. local type = token(l.TYPE, word_match { 'bool', 'byte', 'complex64', 'complex128', 'ffloat32', 'float64', 'int8', 'int16', 'int32', 'int64', 'string', 'uint8', 'uint16', 'uint32', 'uint64', 'complex', 'float', 'int', 'uint', 'uintptr' }) -- Functions. local func = token(l.FUNCTION, word_match { 'cap', 'close', 'closed', 'cmplx', 'copy', 'imag', 'len', 'make', 'new', 'panic', 'print', 'println', 'real' }) -- Identifiers. local identifier = token(l.IDENTIFIER, l.word) -- Operators. local operator = token(l.OPERATOR, S('+-*/%&|^<>=!:;.,()[]{}')) _rules = { { 'whitespace', ws }, { 'keyword', keyword }, { 'constant', constant }, { 'type', type }, { 'function', func }, { 'identifier', identifier }, { 'string', string }, { 'comment', comment }, { 'number', number }, { 'operator', operator }, { 'any_char', l.any_char }, } _foldsymbols = { _patterns = { '[{}]', '/%*', '%*/', '//' }, [l.OPERATOR] = { ['{'] = 1, ['}'] = -1 }, [l.COMMENT] = { ['/*'] = 1, ['*/'] = -1, ['//'] = l.fold_line_comments('//') } }