We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc4cc62 commit f911766Copy full SHA for f911766
1 file changed
src/Parsing/Parser.hs
@@ -24,6 +24,7 @@ module Parsing.Parser
24
, typescriptParser
25
, typescriptASTParser
26
, phpParser
27
+, phpASTParser
28
, haskellParser
29
) where
30
@@ -137,6 +138,9 @@ rubyParser = AssignmentParser (ASTParser tree_sitter_ruby) Ruby.assignment
137
138
phpParser :: Parser PHP.Term
139
phpParser = AssignmentParser (ASTParser tree_sitter_php) PHP.assignment
140
141
+phpASTParser :: Parser (AST [] PHP.Grammar)
142
+phpASTParser = ASTParser tree_sitter_php
143
+
144
pythonParser :: Parser Python.Term
145
pythonParser = AssignmentParser (ASTParser tree_sitter_python) Python.assignment
146
0 commit comments