2017-07-17 17:19:35 +00:00
|
|
|
const SPECIAL_CHARACTERS = [
|
|
|
|
"'", '"',
|
|
|
|
'<', '>',
|
|
|
|
'{', '}',
|
|
|
|
'(', ')',
|
|
|
|
'`', '$',
|
|
|
|
'&', ';',
|
|
|
|
'\\',
|
|
|
|
'\\s',
|
|
|
|
];
|
|
|
|
|
2017-07-14 19:28:54 +00:00
|
|
|
module.exports = grammar({
|
|
|
|
name: 'bash',
|
|
|
|
|
2017-07-16 05:13:55 +00:00
|
|
|
inline: $ => [
|
2017-07-16 05:23:38 +00:00
|
|
|
$._statement,
|
|
|
|
$._terminator,
|
|
|
|
$._expression,
|
2017-07-17 17:19:35 +00:00
|
|
|
$._variable_name,
|
2017-07-16 05:13:55 +00:00
|
|
|
],
|
2017-07-14 19:28:54 +00:00
|
|
|
|
2017-07-14 20:54:05 +00:00
|
|
|
externals: $ => [
|
2017-07-14 21:27:13 +00:00
|
|
|
$._simple_heredoc,
|
|
|
|
$._heredoc_beginning,
|
|
|
|
$._heredoc_middle,
|
2017-07-15 00:14:23 +00:00
|
|
|
$._heredoc_end,
|
2017-07-15 00:41:14 +00:00
|
|
|
$.file_descriptor,
|
2017-07-16 06:12:22 +00:00
|
|
|
$._empty_value,
|
2017-07-17 17:19:35 +00:00
|
|
|
$._concat,
|
|
|
|
$.variable_name,
|
|
|
|
'\n',
|
2017-07-14 20:54:05 +00:00
|
|
|
],
|
|
|
|
|
2017-07-14 21:34:49 +00:00
|
|
|
extras: $ => [
|
|
|
|
$.comment,
|
2017-07-14 21:39:28 +00:00
|
|
|
token(choice(/\s/, '\\\n')),
|
2017-07-14 21:34:49 +00:00
|
|
|
],
|
|
|
|
|
2017-07-14 19:28:54 +00:00
|
|
|
rules: {
|
2017-07-14 23:11:35 +00:00
|
|
|
program: $ => repeat($._terminated_statement),
|
2017-07-14 19:28:54 +00:00
|
|
|
|
2017-07-14 23:11:35 +00:00
|
|
|
_terminated_statement: $ => seq(
|
2017-07-16 05:23:38 +00:00
|
|
|
$._statement,
|
|
|
|
$._terminator
|
2017-07-14 23:11:35 +00:00
|
|
|
),
|
|
|
|
|
2017-07-16 05:13:55 +00:00
|
|
|
// Statements
|
|
|
|
|
2017-07-16 05:23:38 +00:00
|
|
|
_statement: $ => choice(
|
2017-07-14 23:47:25 +00:00
|
|
|
$.environment_variable_assignment,
|
2017-07-14 23:11:35 +00:00
|
|
|
$.command,
|
2017-07-14 23:47:25 +00:00
|
|
|
$.bracket_command,
|
2017-07-15 00:51:06 +00:00
|
|
|
$.for_statement,
|
2017-07-14 23:11:35 +00:00
|
|
|
$.while_statement,
|
2017-07-14 23:18:46 +00:00
|
|
|
$.if_statement,
|
2017-07-14 23:29:28 +00:00
|
|
|
$.case_statement,
|
2017-07-14 23:11:35 +00:00
|
|
|
$.pipeline,
|
2017-07-15 00:32:55 +00:00
|
|
|
$.list,
|
2017-07-15 00:35:51 +00:00
|
|
|
$.subshell,
|
|
|
|
$.function_definition
|
2017-07-14 23:11:35 +00:00
|
|
|
),
|
|
|
|
|
2017-07-15 00:51:06 +00:00
|
|
|
for_statement: $ => seq(
|
|
|
|
'for',
|
2017-07-16 05:13:55 +00:00
|
|
|
$.word,
|
2017-07-15 00:51:06 +00:00
|
|
|
'in',
|
2017-07-17 17:19:35 +00:00
|
|
|
repeat1($._expression),
|
|
|
|
$._terminator,
|
2017-07-15 00:51:06 +00:00
|
|
|
$.do_group
|
|
|
|
),
|
|
|
|
|
2017-07-14 23:11:35 +00:00
|
|
|
while_statement: $ => seq(
|
|
|
|
'while',
|
|
|
|
$._terminated_statement,
|
|
|
|
$.do_group
|
|
|
|
),
|
|
|
|
|
2017-07-14 23:29:28 +00:00
|
|
|
do_group: $ => seq(
|
|
|
|
'do',
|
|
|
|
repeat($._terminated_statement),
|
|
|
|
'done'
|
|
|
|
),
|
|
|
|
|
2017-07-14 23:18:46 +00:00
|
|
|
if_statement: $ => seq(
|
|
|
|
'if',
|
|
|
|
$._terminated_statement,
|
|
|
|
'then',
|
|
|
|
repeat($._terminated_statement),
|
|
|
|
repeat($.elif_clause),
|
|
|
|
optional($.else_clause),
|
|
|
|
'fi'
|
|
|
|
),
|
|
|
|
|
|
|
|
elif_clause: $ => seq(
|
|
|
|
'elif',
|
|
|
|
$._terminated_statement,
|
|
|
|
'then',
|
|
|
|
repeat($._terminated_statement)
|
|
|
|
),
|
|
|
|
|
|
|
|
else_clause: $ => seq(
|
|
|
|
'else',
|
|
|
|
repeat($._terminated_statement)
|
|
|
|
),
|
|
|
|
|
2017-07-14 23:29:28 +00:00
|
|
|
case_statement: $ => seq(
|
|
|
|
'case',
|
2017-07-16 05:23:38 +00:00
|
|
|
$._expression,
|
|
|
|
optional($._terminator),
|
2017-07-14 23:29:28 +00:00
|
|
|
'in',
|
2017-07-16 05:23:38 +00:00
|
|
|
$._terminator,
|
2017-07-14 23:29:28 +00:00
|
|
|
repeat($.case_item),
|
|
|
|
'esac'
|
|
|
|
),
|
|
|
|
|
|
|
|
case_item: $ => seq(
|
2017-07-16 05:23:38 +00:00
|
|
|
$._expression,
|
2017-07-17 17:19:35 +00:00
|
|
|
repeat(seq('|', $._expression)),
|
2017-07-14 23:29:28 +00:00
|
|
|
')',
|
2017-07-14 23:11:35 +00:00
|
|
|
repeat($._terminated_statement),
|
2017-07-15 00:32:55 +00:00
|
|
|
';;'
|
2017-07-14 19:28:54 +00:00
|
|
|
),
|
|
|
|
|
2017-07-15 00:35:51 +00:00
|
|
|
function_definition: $ => seq(
|
|
|
|
optional('function'),
|
2017-07-17 17:19:35 +00:00
|
|
|
$.word,
|
2017-07-15 00:35:51 +00:00
|
|
|
'(',
|
|
|
|
')',
|
2017-07-16 05:13:55 +00:00
|
|
|
$.compound_statement
|
2017-07-15 00:35:51 +00:00
|
|
|
),
|
|
|
|
|
2017-07-16 05:13:55 +00:00
|
|
|
compound_statement: $ => seq(
|
2017-07-15 00:35:51 +00:00
|
|
|
'{',
|
|
|
|
repeat($._terminated_statement),
|
|
|
|
'}'
|
|
|
|
),
|
|
|
|
|
2017-07-16 05:13:55 +00:00
|
|
|
subshell: $ => seq(
|
|
|
|
'(',
|
|
|
|
repeat($._terminated_statement),
|
2017-07-17 17:19:35 +00:00
|
|
|
$._statement,
|
|
|
|
optional($._terminator),
|
2017-07-16 05:13:55 +00:00
|
|
|
')'
|
|
|
|
),
|
|
|
|
|
|
|
|
pipeline: $ => prec.left(1, seq(
|
2017-07-16 05:23:38 +00:00
|
|
|
$._statement,
|
2017-07-16 05:13:55 +00:00
|
|
|
choice('|', '|&'),
|
2017-07-16 05:23:38 +00:00
|
|
|
$._statement
|
2017-07-16 05:13:55 +00:00
|
|
|
)),
|
|
|
|
|
2017-07-16 05:41:56 +00:00
|
|
|
list: $ => prec.left(-1, seq(
|
2017-07-16 05:23:38 +00:00
|
|
|
$._statement,
|
2017-07-16 05:13:55 +00:00
|
|
|
choice('&&', '||'),
|
2017-07-16 05:23:38 +00:00
|
|
|
$._statement
|
2017-07-16 05:13:55 +00:00
|
|
|
)),
|
|
|
|
|
2017-07-14 23:47:25 +00:00
|
|
|
bracket_command: $ => choice(
|
2017-07-16 05:23:38 +00:00
|
|
|
seq('[', repeat1($._expression), ']'),
|
|
|
|
seq('[[', repeat1($._expression), ']]')
|
2017-07-14 23:47:25 +00:00
|
|
|
),
|
|
|
|
|
2017-07-16 05:13:55 +00:00
|
|
|
// Commands
|
|
|
|
|
|
|
|
command: $ => prec.left(seq(
|
2017-07-14 19:43:42 +00:00
|
|
|
repeat(choice(
|
|
|
|
$.environment_variable_assignment,
|
|
|
|
$.file_redirect
|
|
|
|
)),
|
2017-07-17 17:19:35 +00:00
|
|
|
$.command_name,
|
|
|
|
repeat($._expression),
|
2017-07-14 20:54:05 +00:00
|
|
|
repeat(choice(
|
|
|
|
$.file_redirect,
|
|
|
|
$.heredoc_redirect
|
|
|
|
))
|
2017-07-14 19:28:54 +00:00
|
|
|
)),
|
|
|
|
|
2017-07-17 17:19:35 +00:00
|
|
|
command_name: $ => $._expression,
|
|
|
|
|
2017-07-14 19:28:54 +00:00
|
|
|
environment_variable_assignment: $ => seq(
|
2017-07-17 17:19:35 +00:00
|
|
|
choice(
|
|
|
|
$.variable_name,
|
|
|
|
$.subscript
|
|
|
|
),
|
2017-07-14 19:28:54 +00:00
|
|
|
'=',
|
2017-07-15 00:41:14 +00:00
|
|
|
choice(
|
2017-07-16 05:23:38 +00:00
|
|
|
$._expression,
|
2017-07-17 17:19:35 +00:00
|
|
|
$.array,
|
2017-07-15 00:41:14 +00:00
|
|
|
$._empty_value
|
|
|
|
)
|
2017-07-14 23:47:25 +00:00
|
|
|
),
|
|
|
|
|
2017-07-17 17:19:35 +00:00
|
|
|
subscript: $ => seq(
|
|
|
|
$.variable_name,
|
|
|
|
'[',
|
|
|
|
$._expression,
|
|
|
|
']'
|
|
|
|
),
|
|
|
|
|
|
|
|
file_redirect: $ => prec.left(seq(
|
2017-07-16 05:13:55 +00:00
|
|
|
optional($.file_descriptor),
|
|
|
|
choice('<', '>', '>>', '&>', '&>>', '<&', '>&'),
|
2017-07-16 05:23:38 +00:00
|
|
|
$._expression
|
2017-07-17 17:19:35 +00:00
|
|
|
)),
|
2017-07-16 05:13:55 +00:00
|
|
|
|
|
|
|
heredoc_redirect: $ => seq(
|
|
|
|
choice('<<', '<<-'),
|
|
|
|
$.heredoc
|
|
|
|
),
|
|
|
|
|
|
|
|
heredoc: $ => choice(
|
|
|
|
$._simple_heredoc,
|
|
|
|
seq(
|
|
|
|
$._heredoc_beginning,
|
|
|
|
repeat(choice(
|
|
|
|
$.expansion,
|
|
|
|
$.simple_expansion,
|
|
|
|
$._heredoc_middle
|
|
|
|
)),
|
|
|
|
$._heredoc_end
|
|
|
|
)
|
|
|
|
),
|
|
|
|
|
|
|
|
// Expressions
|
|
|
|
|
2017-07-16 05:23:38 +00:00
|
|
|
_expression: $ => choice(
|
2017-07-16 05:13:55 +00:00
|
|
|
$.word,
|
|
|
|
$.string,
|
|
|
|
$.raw_string,
|
2017-07-14 23:47:25 +00:00
|
|
|
$.expansion,
|
2017-07-16 05:13:55 +00:00
|
|
|
$.simple_expansion,
|
2017-07-16 05:22:38 +00:00
|
|
|
$.command_substitution,
|
2017-07-17 17:19:35 +00:00
|
|
|
$.process_substitution,
|
|
|
|
$.concatenation
|
2017-07-14 19:28:54 +00:00
|
|
|
),
|
|
|
|
|
2017-07-17 17:19:35 +00:00
|
|
|
concatenation: $ => prec(-1, seq(
|
|
|
|
choice(
|
|
|
|
$.word,
|
|
|
|
$.string,
|
|
|
|
$.raw_string,
|
|
|
|
$.expansion,
|
|
|
|
$.simple_expansion,
|
|
|
|
$.command_substitution,
|
|
|
|
$.process_substitution
|
|
|
|
),
|
|
|
|
repeat1(seq(
|
|
|
|
$._concat,
|
|
|
|
choice(
|
|
|
|
$.word,
|
|
|
|
$.string,
|
|
|
|
$.raw_string,
|
|
|
|
$.expansion,
|
|
|
|
$.simple_expansion,
|
|
|
|
$.command_substitution,
|
|
|
|
$.process_substitution
|
|
|
|
)
|
|
|
|
))
|
|
|
|
)),
|
|
|
|
|
2017-07-16 05:13:55 +00:00
|
|
|
string: $ => seq(
|
2017-07-14 23:47:25 +00:00
|
|
|
'"',
|
|
|
|
repeat(choice(
|
2017-07-16 05:41:56 +00:00
|
|
|
/[^"`$]+/,
|
2017-07-14 23:47:25 +00:00
|
|
|
$.expansion,
|
2017-07-16 05:13:55 +00:00
|
|
|
$.simple_expansion,
|
2017-07-14 23:47:25 +00:00
|
|
|
$.command_substitution
|
|
|
|
)),
|
|
|
|
'"'
|
|
|
|
),
|
|
|
|
|
2017-07-16 05:41:56 +00:00
|
|
|
array: $ => seq(
|
|
|
|
'(',
|
|
|
|
repeat($.word),
|
|
|
|
')'
|
|
|
|
),
|
|
|
|
|
2017-07-16 05:13:55 +00:00
|
|
|
raw_string: $ => /'[^']*'/,
|
2017-07-14 23:47:25 +00:00
|
|
|
|
2017-07-16 05:13:55 +00:00
|
|
|
simple_expansion: $ => seq(
|
2017-07-14 20:00:41 +00:00
|
|
|
'$',
|
2017-07-17 17:19:35 +00:00
|
|
|
$._variable_name
|
2017-07-14 20:00:41 +00:00
|
|
|
),
|
|
|
|
|
2017-07-16 05:13:55 +00:00
|
|
|
expansion: $ => seq(
|
2017-07-14 20:00:41 +00:00
|
|
|
'${',
|
2017-07-16 06:12:22 +00:00
|
|
|
choice(
|
|
|
|
$._variable_name,
|
|
|
|
seq('#', $._variable_name),
|
2017-07-17 17:19:35 +00:00
|
|
|
seq('#', $._variable_name, '[', '@', ']'),
|
|
|
|
seq($._variable_name, '[', '@', ']'),
|
2017-07-16 06:12:22 +00:00
|
|
|
seq(
|
|
|
|
$._variable_name,
|
2017-07-17 17:19:35 +00:00
|
|
|
choice(':', ':?', '=', ':-', '%', '/'),
|
2017-07-16 06:12:22 +00:00
|
|
|
$._expression
|
|
|
|
)
|
|
|
|
),
|
2017-07-14 20:00:41 +00:00
|
|
|
'}'
|
|
|
|
),
|
|
|
|
|
2017-07-16 05:13:55 +00:00
|
|
|
_variable_name: $ => choice(
|
2017-08-01 17:12:23 +00:00
|
|
|
alias($.simple_variable_name, $.variable_name),
|
2017-07-16 05:13:55 +00:00
|
|
|
$.special_variable_name
|
2017-07-14 23:47:25 +00:00
|
|
|
),
|
|
|
|
|
2017-07-16 05:13:55 +00:00
|
|
|
command_substitution: $ => choice(
|
2017-07-16 05:41:56 +00:00
|
|
|
seq('$(', $._statement, ')'),
|
|
|
|
prec(1, seq('`', $._statement, '`'))
|
2017-07-14 19:43:42 +00:00
|
|
|
),
|
|
|
|
|
2017-07-16 05:22:38 +00:00
|
|
|
process_substitution: $ => seq(
|
2017-07-17 17:19:35 +00:00
|
|
|
choice('<(', '>('),
|
2017-07-16 05:23:38 +00:00
|
|
|
$._statement,
|
2017-07-16 05:22:38 +00:00
|
|
|
')'
|
|
|
|
),
|
|
|
|
|
2017-07-17 17:19:35 +00:00
|
|
|
word: $ => token(repeat1(choice(
|
|
|
|
noneOf('#', ...SPECIAL_CHARACTERS),
|
|
|
|
seq('\\', noneOf('\\s'))
|
|
|
|
))),
|
2017-07-14 20:54:05 +00:00
|
|
|
|
2017-07-17 17:19:35 +00:00
|
|
|
comment: $ => token(prec(-1, /#.*/)),
|
2017-07-14 19:28:54 +00:00
|
|
|
|
2017-07-16 05:13:55 +00:00
|
|
|
simple_variable_name: $ => /\w+/,
|
2017-07-14 21:34:49 +00:00
|
|
|
|
2017-07-16 05:13:55 +00:00
|
|
|
special_variable_name: $ => choice('*', '@', '#', '?', '-', '$', '!', '0', '_'),
|
2017-07-14 23:29:28 +00:00
|
|
|
|
2017-07-17 17:19:35 +00:00
|
|
|
_terminator: $ => choice(';', ';;', '\n', '&')
|
2017-07-14 19:28:54 +00:00
|
|
|
}
|
|
|
|
});
|
2017-07-17 17:19:35 +00:00
|
|
|
|
|
|
|
function noneOf(...characters) {
|
|
|
|
const negatedString = characters.map(c => c == '\\' ? '\\\\' : c).join('')
|
|
|
|
return new RegExp('[^' + negatedString + ']')
|
|
|
|
}
|