Skip to content
This repository was archived by the owner on Dec 20, 2024. It is now read-only.

AndroidIDEOfficial/tree-sitter-kotlin

This branch is 10 commits ahead of, 68 commits behind fwcd/tree-sitter-kotlin:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6590e9b · Mar 16, 2024
Mar 13, 2024
Mar 14, 2024
Sep 25, 2023
Sep 25, 2023
Mar 16, 2024
Nov 25, 2023
Sep 20, 2021
Jul 29, 2019
Mar 13, 2024
Mar 14, 2024
Mar 14, 2024
Jul 28, 2019
Jul 29, 2019
Mar 13, 2024
Mar 13, 2024
Nov 9, 2021
Mar 13, 2024
Nov 25, 2023
Mar 13, 2024
Mar 13, 2024
Oct 11, 2021

Repository files navigation

Kotlin Grammar for Tree-sitter

Build NPM crates.io

Kotlin language grammar for Tree-sitter. You can try it out directly on the web.

Icon

The grammar is based on the official language grammar.

Project Structure

File Description
grammar.js The Tree-sitter grammar
grammar-reference.js A direct translation of the Kotlin language grammar that is, however, ambiguous to Tree-sitter
src The generated parser

Setup

npm install

Development

Compilation

To (re-)compile the grammar, run:

npm run generate

Note that the grammar is written completely in JavaScript (grammar.js), the other source files are generated by tree-sitter.

Testing

To run the unit tests, run:

npm run test

WebAssembly

Compilation

First make sure to have Emscripten installed. If you use Homebrew, you can brew install emscripten. Then run:

npm run build-wasm

Playground

After compiling the grammar to WebAssembly, you can invoke

npm run playground

to launch an interactive editing environment that displays the parsed syntax tree on-the-fly in the browser. You can also view a deployed version of this playground on the web.

Screenshot

Documentation

More documentation on how to create Tree-sitter grammars can be found here.

See also

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 80.6%
  • Scheme 8.0%
  • Makefile 5.4%
  • Rust 4.3%
  • C++ 1.2%
  • Python 0.5%