294 lines
4.5 KiB
JavaScript
294 lines
4.5 KiB
JavaScript
module.exports = grammar({
|
|
name: 'dust',
|
|
|
|
word: $ => $.identifier,
|
|
|
|
rules: {
|
|
root: $ => repeat1($.item),
|
|
|
|
item: $ => prec.left(repeat1($.statement)),
|
|
|
|
statement: $ => choice(
|
|
$.comment,
|
|
$.assignment,
|
|
$.expression,
|
|
$.if_else,
|
|
$.insert,
|
|
$.select,
|
|
$.while,
|
|
$.async,
|
|
$.for,
|
|
$.transform,
|
|
$.filter,
|
|
$.find,
|
|
$.remove,
|
|
),
|
|
|
|
comment: $ => seq(/[#]+.*/),
|
|
|
|
expression: $ => choice(
|
|
$._expression_kind,
|
|
seq('(', $._expression_kind, ')'),
|
|
),
|
|
|
|
_expression_kind: $ => prec.right(choice(
|
|
$.value,
|
|
$.identifier,
|
|
$.function_call,
|
|
$.tool,
|
|
$.math,
|
|
$.logic,
|
|
)),
|
|
|
|
identifier: $ => /[a-z|_|.]+[0-9]?/,
|
|
|
|
value: $ => choice(
|
|
$.integer,
|
|
$.float,
|
|
$.string,
|
|
$.boolean,
|
|
$.list,
|
|
$.function,
|
|
$.table,
|
|
$.map,
|
|
),
|
|
|
|
integer: $ => /[-]?[0-9]+/,
|
|
|
|
float: $ => /[-]?[0-9]+[.]{1}[0-9]*/,
|
|
|
|
string: $ => /("[^"]*?")|('[^']*?')|(`[^`]*?`)/,
|
|
|
|
boolean: $ => choice(
|
|
'true',
|
|
'false',
|
|
),
|
|
|
|
list: $ => seq(
|
|
'[',
|
|
repeat(seq($.expression, optional(','))),
|
|
']'
|
|
),
|
|
|
|
function: $ => seq(
|
|
'function',
|
|
optional(seq('<', repeat(seq($.identifier, optional(','))), '>')),
|
|
'{',
|
|
$.item,
|
|
'}',
|
|
),
|
|
|
|
table: $ => prec.right(seq(
|
|
'table',
|
|
seq('<', repeat1(seq($.identifier, optional(','))), '>'),
|
|
$.expression,
|
|
)),
|
|
|
|
map: $ => seq(
|
|
'{',
|
|
repeat(seq($.identifier, "=", $.expression)),
|
|
'}',
|
|
),
|
|
|
|
math: $ => prec.left(seq(
|
|
$.expression,
|
|
$.math_operator,
|
|
$.expression,
|
|
)),
|
|
|
|
math_operator: $ => choice(
|
|
'+',
|
|
'-',
|
|
'*',
|
|
'/',
|
|
'%',
|
|
),
|
|
|
|
logic: $ => prec.right(seq(
|
|
$.expression,
|
|
$.logic_operator,
|
|
$.expression,
|
|
)),
|
|
|
|
logic_operator: $ => choice(
|
|
'==',
|
|
'!=',
|
|
'&&',
|
|
'||',
|
|
'>',
|
|
'<',
|
|
">=",
|
|
"<=",
|
|
),
|
|
|
|
assignment: $ => prec.right(seq(
|
|
$.identifier,
|
|
$.assignment_operator,
|
|
$.statement,
|
|
)),
|
|
|
|
assignment_operator: $ => choice(
|
|
"=",
|
|
"+=",
|
|
"-=",
|
|
),
|
|
|
|
if_else: $ => prec.left(seq(
|
|
$.if,
|
|
repeat(seq($.else_if)),
|
|
optional(seq($.else)),
|
|
)),
|
|
|
|
if: $ => seq(
|
|
'if',
|
|
$.expression,
|
|
'{',
|
|
$.statement,
|
|
'}',
|
|
),
|
|
|
|
else_if: $ => seq(
|
|
'else if',
|
|
$.expression,
|
|
'{',
|
|
$.statement,
|
|
'}',
|
|
),
|
|
|
|
else: $ => seq(
|
|
'else',
|
|
'{',
|
|
$.statement,
|
|
'}',
|
|
),
|
|
|
|
function_call: $ => prec.right(seq(
|
|
'(',
|
|
$.identifier,
|
|
repeat(seq($.expression, optional(','))),
|
|
')',
|
|
)),
|
|
|
|
while: $ => seq(
|
|
'while',
|
|
$.expression,
|
|
'{',
|
|
$.item,
|
|
'}',
|
|
),
|
|
|
|
for: $ => seq(
|
|
'for',
|
|
$.identifier,
|
|
'in',
|
|
$.expression,
|
|
'{',
|
|
$.item,
|
|
'}',
|
|
),
|
|
|
|
transform: $ => seq(
|
|
'transform',
|
|
$.identifier,
|
|
'in',
|
|
$.expression,
|
|
'{',
|
|
$.item,
|
|
'}',
|
|
),
|
|
|
|
filter: $ => seq(
|
|
'filter',
|
|
$.identifier,
|
|
'in',
|
|
$.expression,
|
|
'{',
|
|
$.item,
|
|
'}',
|
|
),
|
|
|
|
find: $ => seq(
|
|
'find',
|
|
$.identifier,
|
|
'in',
|
|
$.expression,
|
|
'{',
|
|
$.item,
|
|
'}',
|
|
),
|
|
|
|
remove: $ => seq(
|
|
'remove',
|
|
$.identifier,
|
|
'in',
|
|
$.expression,
|
|
'{',
|
|
$.item,
|
|
'}',
|
|
),
|
|
|
|
select: $ => prec.right(seq(
|
|
'select',
|
|
'<',
|
|
repeat(seq($.identifier, optional(','))),
|
|
'>',
|
|
'from',
|
|
$.expression,
|
|
optional(seq('{', $.item, '}')),
|
|
)),
|
|
|
|
insert: $ => prec.right(seq(
|
|
'insert',
|
|
repeat1($.list),
|
|
'into',
|
|
$.identifier,
|
|
optional(
|
|
seq('where', $.logic)
|
|
),
|
|
)),
|
|
|
|
async: $ => seq(
|
|
'async',
|
|
'{',
|
|
repeat($.statement),
|
|
'}'
|
|
),
|
|
|
|
tool: $ => prec.right(seq(
|
|
'(',
|
|
$._tool_kind,
|
|
repeat(seq($.expression, optional(','))),
|
|
')',
|
|
)),
|
|
|
|
_tool_kind: $ => choice(
|
|
// General
|
|
'assert',
|
|
'assert_equal',
|
|
'help',
|
|
'length',
|
|
'output',
|
|
'output_error',
|
|
|
|
// Filesystem
|
|
'append',
|
|
'metadata',
|
|
'move',
|
|
'read',
|
|
'remove',
|
|
'write',
|
|
|
|
// Format conversion
|
|
'from_json',
|
|
'to_json',
|
|
'to_string',
|
|
|
|
// Command
|
|
'bash',
|
|
'fish',
|
|
'raw',
|
|
'sh',
|
|
'zsh',
|
|
),
|
|
}
|
|
}); |