Crate tree_sitter_php

Source
Expand description

This crate provides PHP language support for the tree-sitter parsing library.

Typically, you will use the LANGUAGE_PHP constant to add this language to a tree-sitter Parser, and then use the parser to parse some code:

use tree_sitter::Parser;

let code = r#"
<?php
  echo "Hello, World!";
?>
"#;
let mut parser = Parser::new();
let language = tree_sitter_php::LANGUAGE_PHP;
parser
    .set_language(&language.into())
    .expect("Error loading PHP parser");
let tree = parser.parse(code, None).unwrap();
assert!(!tree.root_node().has_error());

Constantsยง

HIGHLIGHTS_QUERY
The syntax highlighting query for PHP.
INJECTIONS_QUERY
The injection query for PHP.
LANGUAGE_PHP
The tree-sitter LanguageFn for PHP.
LANGUAGE_PHP_ONLY
The tree-sitter LanguageFn for PHP-Only.
PHP_NODE_TYPES
The content of the node-types.json file for this grammar.
PHP_ONLY_NODE_TYPES
TAGS_QUERY
The symbol tagging query for PHP.