1 -- Copyright 2006-2017 Mitchell mitchell.att.foicica.com. See LICENSE.
4 local l
= require('lexer')
5 local token
, word_match
= l
.token
, l
.word_match
6 local P
, R
, S
= lpeg
.P
, lpeg
.R
, lpeg
.S
8 local M
= {_NAME
= 'rstats'}
11 local ws
= token(l
.WHITESPACE
, l
.space^
1)
14 local comment
= token(l
.COMMENT
, '#' * l
.nonnewline^
0)
17 local sq_str
= l
.delimited_range("'", true)
18 local dq_str
= l
.delimited_range('"', true)
19 local string = token(l
.STRING
, sq_str
+ dq_str
)
22 local number = token(l
.NUMBER
, (l
.float
+ l
.integer
) * P('i')^
-1)
25 local keyword
= token(l
.KEYWORD
, word_match
{
26 'break', 'else', 'for', 'if', 'in', 'next', 'repeat', 'return', 'switch',
27 'try', 'while', 'Inf', 'NA', 'NaN', 'NULL', 'FALSE', 'TRUE'
31 local type = token(l
.TYPE
, word_match
{
32 'array', 'character', 'complex', 'data.frame', 'double', 'factor', 'function',
33 'integer', 'list', 'logical', 'matrix', 'numeric', 'vector'
37 local identifier
= token(l
.IDENTIFIER
, l
.word
)
40 local operator
= token(l
.OPERATOR
, S('<->+*/^=.,:;|$()[]{}'))
46 {'identifier', identifier
},
50 {'operator', operator
},