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.