mirror of https://github.com/Wilfred/difftastic/
Closes #453 |
||
|---|---|---|
| .. | ||
| bindings/node | ||
| corpus | ||
| docs | ||
| examples | ||
| queries | ||
| scripts | ||
| src | ||
| toml-spec | ||
| .editorconfig | ||
| .gitattributes | ||
| .gitignore | ||
| .gitmodules | ||
| .npmignore | ||
| .travis.yml | ||
| CHANGELOG.md | ||
| LICENSE | ||
| README.md | ||
| binding.gyp | ||
| grammar.js | ||
| package.json | ||
| yarn.lock | ||
README.md
tree-sitter-toml
TOML (TOML Spec v1.0.0-rc.1) grammar for tree-sitter
Install
npm install tree-sitter-toml tree-sitter
Usage
const Parser = require("tree-sitter");
const TOML = require("tree-sitter-toml");
const parser = new Parser();
parser.setLanguage(TOML);
const sourceCode = `
[hello]
world = true
`;
const tree = parser.parse(sourceCode);
console.log(tree.rootNode.toString());
// (document
// (table
// (key)
// (pair
// (key) (boolean))))
License
MIT © Ika