const PREC = { COMMENT: -2, EOL: -1, UNQUOTED_STRING: 0, CONTAINER: 2, CONNECTION: 2, SHAPE: 3, IDENTIFIER: 0, ARROW: 0, ATTRIBUTE: 0, ATTRIBUTE_KEY: 0, }; module.exports = grammar({ name: "d2", extras: ($) => [ /[ \f\t\v\u00a0\u1680\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff]/, $.line_comment, ], word: ($) => $._identifier, conflicts: ($) => [[$._connection_path, $.container]], rules: { source_file: ($) => repeat($._root_definition), _root_definition: ($) => choice( $._eol, seq( choice( alias($._root_attribute, $.attribute), $.shape, $.container, $.connection ), $._end ) ), // connections connection: ($) => seq( $._connection_path, repeat1(seq($.arrow, $._connection_path)), optional(seq($._colon, $.label)) ), _connection_path: ($) => seq( repeat( prec(PREC.CONNECTION, seq(alias($.shape_key, $.container_key), $.dot)) ), $.shape_key ), // containers container: ($) => prec( PREC.CONTAINER, seq( alias($.shape_key, $.container_key), choice( seq($.dot, choice($.shape, $.container)), seq( seq( optional(seq($._colon, optional($.label))), optional(seq(alias($._container_block, $.block))) ) ) ) ) ), _container_block: ($) => seq("{", repeat($._container_block_definition), "}"), _container_block_definition: ($) => choice( $._eol, seq( choice($.shape, $.container, $.connection, $._shape_attribute), $._end ) ), // shapes shape: ($) => prec( PREC.SHAPE, seq( $.shape_key, optional( choice( seq($.dot, alias($._style_attribute, $.attribute)), seq(optional(seq($._colon, optional($.label)))) ) ) ) ), shape_key: ($) => choice($.string, seq($._identifier, optional($._dash))), _identifier: ($) => token(prec(PREC.IDENTIFIER, /\-?([\w\d]+|([\w\d]+( +|\-)[\w\d]+)+)/)), // attributes _root_attribute: ($) => seq(alias($._root_attr_key, $.attr_key), $._colon, $.attr_value), _root_attr_key: ($) => choice( "direction", // reserved but doesn't affected for root alias( choice( "shape", "label", "constraint", "icon", "style", $._common_style_attr_key, $._text_attr_key ), $.reserved ) ), _shape_attribute: ($) => choice( alias($._base_shape_attribute, $.attribute), alias($._style_attribute, $.attribute) ), _base_shape_attribute: ($) => seq(alias($._shape_attr_key, $.attr_key), $._colon, $.attr_value), _shape_attr_key: ($) => prec( PREC.ATTRIBUTE_KEY, choice( "shape", "label", // sql "constraint", // image "icon", "width", "height" ) ), _style_attribute: ($) => prec( PREC.ATTRIBUTE, seq( alias("style", $.attr_key), choice( seq($.dot, alias($._inner_style_attribute, $.attribute)), seq($._colon, alias($._style_attribute_block, $.block)) ) ) ), _style_attribute_block: ($) => seq( "{", repeat( choice( $._eol, seq(alias($._inner_style_attribute, $.attribute), $._end) ) ), "}" ), _inner_style_attribute: ($) => prec( PREC.ATTRIBUTE, seq(alias($._style_attr_key, $.attr_key), $._colon, $.attr_value) ), _style_attr_key: ($) => choice($._common_style_attr_key, "3d"), _common_style_attr_key: ($) => choice( "opacity", "fill", "stroke", "stroke-width", "stroke-dash", "border-radius", "font-color", "shadow", "multiple", "animated", "link" ), _text_attr_key: ($) => "near", _connection_attr_key: ($) => choice("source-arrowhead", "target-arrowhead"), // label: ($) => choice($.string, $._unquoted_string), attr_value: ($) => seq(choice($.string, $._unquoted_string)), // -------------------------------------------- _dash: ($) => token.immediate("-"), _colon: ($) => seq(":"), arrow: ($) => token(prec(PREC.ARROW, choice(/-+>/, /--+/, /<-+/, /<-+>/))), dot: ($) => token("."), _unquoted_string: ($) => token(prec(PREC.UNQUOTED_STRING, /[\w\-?!]([^'"`\n;{}]*[\w\-?!])?/)), string: ($) => choice( seq("'", repeat(token.immediate(/[^'\n]+/)), "'"), seq('"', repeat(token.immediate(/[^"\n]+/)), '"'), seq("`", repeat(token.immediate(/[^`\n]+/)), "`") ), line_comment: ($) => token(prec(PREC.COMMENT, seq("#", /.*/))), _eol: ($) => token(prec(PREC.EOL, "\n")), _end: ($) => seq(choice(";", $._eol)), }, });