forked from github-linguist/linguist
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for Type Language (github-linguist#3593)
* Support for Type Language * Update Type Language * Add one more sample for Type Language * Update Type Language grammar
- Loading branch information
Showing
8 changed files
with
1,192 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// built-in types | ||
int#a8509bda ? = Int; | ||
long ? = Long; | ||
double ? = Double; | ||
string ? = String; | ||
null = Null; | ||
|
||
vector {t:Type} # [ t ] = Vector t; | ||
coupleInt {alpha:Type} int alpha = CoupleInt<alpha>; | ||
coupleStr {gamma:Type} string gamma = CoupleStr gamma; | ||
|
||
/* The name of the type variable is irrelevant: "gamma" could be replaced with "alpha" | ||
However, the combinator number will depend on the specific choice. */ | ||
|
||
intHash {alpha:Type} vector<coupleInt<alpha>> = IntHash<alpha>; | ||
strHash {alpha:Type} (vector (coupleStr alpha)) = StrHash alpha; | ||
intSortedHash {alpha:Type} intHash<alpha> = IntSortedHash<alpha>; | ||
strSortedHash {alpha:Type} (strHash alpha) = StrSortedHash alpha; | ||
|
||
// custom types | ||
pair x:Object y:Object = Pair; | ||
triple x:Object y:Object z:Object = Triple; | ||
|
||
user#d23c81a3 id:int first_name:string last_name:string = User; | ||
no_user#c67599d1 id:int = User; | ||
group id:int title:string last_name:string = Group; | ||
no_group = Group; | ||
|
||
---functions--- | ||
|
||
// Maybe some built-in arithmetic functions; inverse quotes make "identifiers" out of arbitrary non-alphanumeric strings | ||
`+` Int Int = Int; | ||
`-` Int Int = Int; | ||
`+` Double Double = Double; | ||
// ... | ||
|
||
// API functions (aka RPC functions) | ||
getUser#b0f732d5 int = User; | ||
getUsers#2d84d5f5 (Vector int) = Vector User; |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule language-typelanguage
added at
a82001
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
type: grammar | ||
name: language-typelanguage | ||
license: mit | ||
--- | ||
MIT License | ||
|
||
Copyright (c) 2017 goodmind | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a | ||
copy | ||
of this software and associated documentation files (the "Software"), to | ||
deal | ||
in the Software without restriction, including without limitation the | ||
rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or | ||
sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included | ||
in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
IN THE | ||
SOFTWARE. |