Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitfa0c2d2

Browse files
committed
2
1 parent82312cf commitfa0c2d2

File tree

6 files changed

+1082
-560
lines changed

6 files changed

+1082
-560
lines changed

‎2/cli.re‎

Whitespace-only changes.

‎2/compiler2.re‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
typefileTypes=
2+
|CSS
3+
|Flow
4+
|GraphQL
5+
|Reason
6+
|Typed
7+
|TypeScript;

‎2/dotTyped.re‎

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
typeidentifier=
2+
|Identifier(string);
3+
4+
/* TODO: Add support for JS Modules and JS typeof.*/
5+
typet=
6+
|String
7+
|Int
8+
|Float
9+
|Function(function_)
10+
|Array(t)
11+
|Union(array(t))
12+
|Map(t,t)
13+
|Object(object_)
14+
|Promise(t)
15+
|TypeVariable(identifier)
16+
andproperty= {
17+
name:identifier,
18+
type_:t,
19+
optional:bool,
20+
}
21+
and function_ = {
22+
arguments: array(property),
23+
returnType: t,
24+
}
25+
and object_= {
26+
properties: array(property),
27+
extends: identifier,
28+
};
29+
30+
typetypeBinding= {
31+
name:identifier,
32+
type_:t,
33+
arguments:array(string),
34+
};
35+
36+
typeclassBinding= {
37+
name:identifier,
38+
type_:t,
39+
arguments:array(string),
40+
};
41+
42+
typeletBinding= {
43+
name:identifier,
44+
type_:t,
45+
arguments:array(string),
46+
};
47+
48+
typebinding=
49+
|TypeBinding(typeBinding)
50+
|ClassBinding(classBinding)
51+
|LetBinding(letBinding);

‎bindings/commander.re‎

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
moduleProcess= {
2+
typeargv;
3+
[@bs.scope"process"] [@bs.val]externalargv:argv="";
4+
};
5+
6+
typeprogram;
7+
8+
[@bs.module]externalprogram:program="commander";
9+
10+
[@bs.send]externalversion: (program,string) =>program="";
11+
12+
[@bs.send]externaloption: (program,string) =>program="";
13+
14+
[@bs.send]externalparse: (program,Process.argv) =>Js.Json.t="";

‎bsconfig.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name":"reasonably-typed",
33
"version":"0.14",
4-
"sources": ["bindings","src"],
4+
"sources": ["bindings","src","2"],
55
"bs-dependencies": ["@glennsl/bs-json","flow-dev-tools"],
66
"package-specs": {
77
"module":"commonjs"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp