This commit is contained in:
Jeff 2023-08-22 19:59:15 -04:00
parent 6f6cf93bf2
commit 10086fcf59
4 changed files with 5 additions and 5 deletions

View File

@ -2,9 +2,9 @@
name = "tree-sitter-dust" name = "tree-sitter-dust"
description = "Dust grammar for the tree-sitter parsing library" description = "Dust grammar for the tree-sitter parsing library"
version = "0.0.1" version = "0.0.1"
keywords = ["incremental", "parsing", "Dust"] keywords = ["incremental", "parsing", "dust"]
categories = ["parsing", "text-editors"] categories = ["parsing", "text-editors"]
repository = "https://github.com/tree-sitter/tree-sitter-Dust" repository = "https://github.com/tree-sitter/tree-sitter-dust"
edition = "2018" edition = "2018"
license = "MIT" license = "MIT"

View File

@ -1,5 +1,5 @@
module.exports = grammar({ module.exports = grammar({
name: 'Dust', name: 'dust',
rules: { rules: {
source_file: $ => repeat(choice($.comment, $.expression)), source_file: $ => repeat(choice($.comment, $.expression)),

View File

@ -1,5 +1,5 @@
{ {
"name": "Dust", "name": "dust",
"rules": { "rules": {
"source_file": { "source_file": {
"type": "REPEAT", "type": "REPEAT",

View File

@ -828,7 +828,7 @@ extern "C" {
#define extern __declspec(dllexport) #define extern __declspec(dllexport)
#endif #endif
extern const TSLanguage *tree_sitter_Dust(void) { extern const TSLanguage *tree_sitter_dust(void) {
static const TSLanguage language = { static const TSLanguage language = {
.version = LANGUAGE_VERSION, .version = LANGUAGE_VERSION,
.symbol_count = SYMBOL_COUNT, .symbol_count = SYMBOL_COUNT,