1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 08:54:07 +03:00

Add php modules to project

This commit is contained in:
joshvera 2017-12-15 11:14:08 -08:00
parent 6478fdbde2
commit 9a58f6feb5
3 changed files with 10 additions and 0 deletions

View File

@ -74,6 +74,9 @@ library
, Language.TypeScript.Assignment
, Language.TypeScript.Grammar
, Language.TypeScript.Syntax
, Language.PHP.Assignment
, Language.PHP.Grammar
, Language.PHP.Syntax
, Language.Python.Assignment
, Language.Python.Grammar
, Language.Python.Syntax
@ -137,6 +140,7 @@ library
, haskell-tree-sitter
, tree-sitter-go
, tree-sitter-json
, tree-sitter-php
, tree-sitter-python
, tree-sitter-ruby
, tree-sitter-typescript

View File

@ -0,0 +1,4 @@
{-# LANGUAGE DataKinds, RankNTypes, TypeOperators #-}
module Language.PHP.Assignment
(
) where

View File

@ -0,0 +1,2 @@
{-# LANGUAGE DeriveAnyClass #-}
module Language.PHP.Syntax where