const //TODO figure out how to subtact regex sets unicodeLetter = /\p{L}/ unicodePunctuation = /\p{Pc}/ unicodeDigit = /[0-9]/ module.exports = grammar({ name: 'hcl', conflicts: $ => [ [$.body], [$.object_elem, $.variable_expr], ], extras: $ => [ $.comment, /\s/, ], rules: { config_file: $ => $.body, body: $ => repeat1(seq( choice( $.attribute, $.block, ), )), attribute: $ => seq( $.identifier, '=', $.expression ), block: $ => seq( $.identifier, repeat(choice($.string_lit, $.identifier)), '{', optional($.body), '}', ), // TODO: not to spec, but maybe good enough identifier: $ => token(seq( unicodeLetter, repeat(choice(unicodeLetter, unicodeDigit, unicodePunctuation)) )), expression: $ => choice( $.expr_term, //$.operation, //$.conditional, ), expr_term: $ => choice( $.literal_value, $.collection_value, // $.template_expr, $.variable_expr, // $.function_call, // $.for_expr, // seq($.expr_term, $.index), // seq($.expr_term, $.get_attr), // seq($.expr_term, $.splat), // seq($.expr_term, $.splat), seq('(', $.expression, ')'), ), literal_value: $ => choice( $.numeric_lit, $.string_lit, 'true', 'false', 'null', ), numeric_lit: $ => /[0-9]+(\.[0-9]+([eE][-+]?[0-9]+)?)?/, collection_value: $ => choice( $.tuple, $.object, ), tuple: $ => seq( '[', optional(seq( $.expression, repeat(seq(',', $.expression)), )), ']', ), object: $ => seq( '{', optional(seq( $.object_elem, repeat(seq(',', $.object_elem)), )), '}', ), object_elem: $ => seq( choice($.identifier, $.expression), choice('=', ':'), $.expression, ), variable_expr: $ => $.identifier, // TODO: template expressions //template_expr: $ => choice( //$.quoted_template, //$.heredoc_template, //), //quoted_template: $ => seq('"', /\w+/, '"'), //heredoc_template: $ => '', // TODO: string_literals are special template literals string_lit: $ => seq('"', /\w+/, '"'), // http://stackoverflow.com/questions/13014947/regex-to-match-a-c-style-multiline-comment/36328890#36328890 comment: $ => token(choice( seq('#', /.*/), seq('//', /.*/), seq( '/*', /[^*]*\*+([^/*][^*]*\*+)*/, '/' ) )), } });